/* login */

.captcha {
    height: 58px;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: start;
    width: 100%;
    max-width: 225px;
    padding: 8px 12px;
    margin-top: 1rem;
    border: 1px solid #dfe1e5;
    border-radius: 6px;

}

.captcha-img img {
    width: 140px !important;
    height: 40px !important;
    object-fit: cover;
    /* margin-top: 16px; */
}


.btn-refresh i {
    font-size: 25px !important;
}

.fa-sync-alt {
    color: rgb(156, 156, 156) !important;
    stroke-width: 0.5px !important; /* Adjust for thinner lines */
    transform: scaleX(8px);
}

/* responsive captcha for mobile */
@media (max-width: 769px) {
    .captcha-container {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha {
        gap: 20px;
        max-width: 100%;
        margin-top: 0px;
    }

    .div-form-login {
        height: auto !important;
        padding: 2rem 1.5rem;
    }

    .div-form-register {
        height: auto !important;
        padding: 2rem 1.5rem;
    }

    .btn-faq {
        font-size: 1rem;
        padding: 0.6rem;
    }

    .div-btn-faq {
        text-align: center;
        margin-top: 1rem;
    }

    .div-img-login {
        display: none;
    }

    .div-btn-forget {
        /*text-align: center;*/
    }

    .a-login {
        font-size: 0.85rem;
    }

    .div-logo-mobile img {
        max-width: 150px;
        height: auto;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

/* responsive captcha for ipad */
@media (min-width: 770px) and (max-width: 1024px){
    .captcha-container {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha {
        order: 2;
    }

    .captcha {
        gap: 30px;
        max-width: 100%;
        margin-top: 0px;
    }
}

.div-img-login {
    position: relative;
    background: url("/images/main-login-two.png") no-repeat center center;
    background-size: cover;
    background-position: center center;
    height: 450px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius:  10px 0px 0px 10px;

}
.div-img-register{
    position: relative;
    background: url("/images/main-register.png") no-repeat center center;
    background-size: cover;
    background-position: center center;
    height: 810px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius:  10px 0px 0px 10px;
    z-index: 1;
}

.a-login {
    font-size: 0.9rem;
}

.div-img-login a {
    position: relative;
    z-index: 2;
    padding: 150px;
}
.div-form-login {
    border-radius:  0px 10px 10px 0px;
    height: 450px;
}

.div-form-register {
    border-radius:  0px 10px 10px 0px;
    height: 810px;
}
.div-img-register a {
    position: relative;
    z-index: 2;
    padding: 250px;
}

.form-group.position-relative {
    position: relative;
}

.btn-toggle-pass {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 12px;
    border: none;
    background: transparent;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6c757d;
}

.btn-toggle-pass:focus {
    outline: none;
    box-shadow: none;
}