.left,
.right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 0 0 50%;
    width: 50%;
    height: 100vh;
    background-color: var(--white);
}

.right {
    background-color: var(--primaryBuble);
}

.left img,
.right img {
    max-width: 400px;
}

.form-auth {
    width: 65%;
}

.btn-close-modal-full {
    position: fixed;
    right: 50px;
    top: 30px;
    width: 34px;
    height: 34px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    background-color: transparent;
    transition: all .2s ease-in-out;
}

.btn-close-modal-full:hover {
    color: #FFF;
    background-color: #00000010;
}

@media (min-width: 992px) {
    .modal {
        padding: 50px;
    }

    .modal-fullscreen {
        width: auto;
    }

    .modal-fullscreen .modal-content {
        border-radius: 25px;
        box-shadow: 0 10px 50px #00000020;
    }

    .btn-close-modal-full {
        right: 70px;
        top: 70px;
    }
}

@media (max-width: 1400px) {
    .left img {
        max-width: 220px;
        margin: -20px 0 2rem !important;
    }

    .signup .left img {
        max-width: 300px !important;
    }
}

@media (max-width: 576px) {
    .left,
    .signup .right {
        flex: 0 0 100%;
        width: 100%;
    }

    .right,
    .signup .left {
        display: none;
    }

    .signup .right {
        display: flex;
    }

    .form-auth,
    .signup .right .w-75 {
        width: 100% !important;
    }
}