.auth {
    height: 100vh;
}

.auth .right-box {
    position: relative;
    background-color: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.auth .right-box .vector1 {
    position: absolute;
    top: 0;
    right: 0;
}

.auth .right-box .vector2 {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
}
.logo-box img {
    height: 5rem;
}

.auth .right-box .vector3 {
    position: absolute;
    bottom: 200px;
    left: 3rem;
}

.auth .right-box .title {
    font-weight: 700;
    font-size: 2.5rem;
    color: #f4f6f3;
    margin-bottom: 1.25rem;
    text-align: center;
}

.auth .right-box .description {
    font-weight: 400;
    font-size: 1.25rem;
    color: #f4f6f3;
    text-align: center;
}

.auth .left-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.auth .left-box .logo-box {
    position: absolute;
    left: 4rem;
    top: 2.25rem;
    max-width: 130px;
    margin-bottom: 3rem;
}

.auth .left-box form {
    width: 75%;
}

.auth .left-box form .title {
    color: #12374d;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.auth .left-box form .form-label {
    color: #616161;
    font-weight: 700;
    font-size: 0.75rem;
}

.auth .left-box form .form-control {
    box-shadow:0 0.25rem 1.25rem 0 #85bc4126 !important;
    border: thin solid #e0e0e0 !important;
    background: #ffffff !important;
    direction: rtl;
}

.auth .left-box form .form-control:-webkit-autofill,
.auth .left-box form .form-control:-webkit-autofill:hover,
.auth .left-box form .form-control:-webkit-autofill:focus {
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    box-shadow: 0 0 0 1000px white inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

.auth .left-box form .form-check .form-check-input {
    border: 2px solid #4b5744;
    width: 1.25rem;
    height: 1.25rem;
    box-shadow: none;
}

.auth .left-box form .form-check .form-check-input:checked {
    border: 2px solid var(--primary);
    background-color: var(--primary);
    box-shadow: none;
}

.auth .left-box form .form-check .form-check-label {
    font-weight: 700;
    font-size: 1rem;
    color: #8e8e93;
}

.auth .left-box form .custom-btn-primary {
    background-color: var(--primary);
    height: 3.5rem;
    border-radius: 0.5rem;
    padding: 0.5rem;
    box-shadow: 0 0 0.75rem 0 #0000001f;
    width: 100%;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    color: #ffffff;
}

@media screen and (max-width:767.98px) {
    .auth .left-box {
        flex-direction: column;
    }

    .auth .left-box .logo-box {
        position: relative;
        left: unset;
        top: unset;
    }

    .auth .left-box form {
        width: 100%;
    }

    .auth .left-box form .title {
        text-align: center;
    }
}

@media screen and (max-width:991.98px) {
    .auth .right-box {
        display: none;
    }
}
