/* --------------------------------------------------- */
/* Left Image Section */
/* --------------------------------------------------- */
.auth_left{
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    padding: 10%;
    color: var(--white);
}
.auth_left h1{
    margin-bottom: 16px;
}
.auth_left p{
    margin-bottom: 30px;
}
.auth_left ul{
    list-style: none;
}
.auth_left ul li{
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.auth_left ul li:last-child{
    margin-bottom: 0;
}
.auth_left ul li img{
    width: 24px;
    margin-right: 12px;
}

/* --------------------------------------------------- */
/* Right Form Section */
/* --------------------------------------------------- */
/* Login Form */
.auth_right{
    height: 100%;
    padding: 10%;
}
.auth_right img{
    width: 160px;
    margin-bottom: 40px;
}
.auth_right h5{
    margin-bottom: 30px;
}
.auth_right_form{
    width: 400px;
    margin: 0 auto;
}
.auth_right_form input{
    width: 400px;
    margin: 0 auto;
}
.auth_right_form button, .auth_right_form a, .auth_right_form input{
    width: 100%;
    font-size: 16px;
}

/* Google Login */
.google_social{
    background-color: var(--white);
    border-color: var(--secondary-light);
    color: var(--theme-secondary);
}
.google_social:hover, .google_social:focus{
    background-color: var(--light);
    border-color: var(--secondary-light);
    color: var(--theme-secondary);
}
.google_social img{
    width: 26px;
    margin-bottom: 0;
}

/* OR */
.login_or{
    position: relative;
    display: block;
    padding: 20px 0;
}
.login_or p{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-light);
    margin: 0;
}
.login_or p span{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid var(--secondary-light);
    border-radius: 50%;
    width: 36px;
    height: 36px;
}
.login_or p::before,
.login_or p::after {
    content: "";
    border-top: 1px solid var(--secondary-light);
    width: 30%;
    margin: 0 15px;
}

/* --------------------------------------------------- */
/* OTP */
/* --------------------------------------------------- */
.resend_otp {
    padding-top: 24px;
}
.resend_otp a{
    color: var(--theme);
}
.resend_otp a:hover, .resend_otp a:focus{
    color: var(--theme-dark);
}

.otp_inputs {
    display: inline-flex;
}
.otp_inputs input{
    margin-right: 8px;
    text-align: center;
    max-width: 60px;
}
.otp_inputs input:last-child{
    margin-right: 0;
}



/* --------------------------------------------------- */
/* RESPONSIVE */
/* --------------------------------------------------- */

@media (max-width: 1100px){
    .auth_left {
        padding: 5% 10%;
    }
    .auth_left h1 {
        font-size: 28px;
    }
    .auth_left p {
        margin-bottom: 24px;
    }
    .auth_right {
        height: 100%;
        padding: 5% 10%;
    }
}


@media (max-width: 600px){
    .auth_left {
        padding:30px;
    }
    .auth_left h1 {
        font-size: 24px;
    }
    .auth_left p {
        margin-bottom: 18px;
    }
    .auth_left ul li {
        align-items: start;
        margin-bottom: 10px;
    }
    .auth_left ul li img {
        width: 20px;
        margin-right: 10px;
        margin-top: 4px;
    }
    .auth_right {
        height: 100%;
        padding: 40px 30px;
    }
    .auth_right img.auth_logo {
        width: 140px;
        margin-bottom: 20px;
    }
}


