.authContainer{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 860px;
}
.authContainer_sec{
    max-width: 1920px;
    width: 100%;
    height: 100%;
    max-height: 1000px;
    display: flex;
    background: var(--colorWhite);
}
.authContainer_sec_left{
    width: 70%;
    background: url(../images/auth/authBg.webp?v1);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}
.authModel{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.authModel img{
    width: 100%;
    height: auto;
    display: block;
}
.authDetails{
    box-shadow: 0px 0px 24px 0px #0000000F;
    background-color: var(--colorWhite);
    width: max-content;
    padding: 16px 20px;
    gap: 12px;
    align-items: center;
    border-radius: 12px;
    position: absolute;
}
.authDetails img{
    width: 52px;
}
.authDetails span{
    color: var(--text-black);
}
.authDetails_1{
    top: 42%;
    left: 70%;

}
.authDetails_2{
    bottom: 56px;
    left: -50px;
}
.authContainer_sec_left .fig_flex{
    position: absolute;
    top: 40px;
    left: 80px;
}
.authPagetext{
    position: absolute;
    left: 80px;
    top: 150px;
    font-size: 24px;
    font-weight: 500;
    color: var(--text-black);
}
.authPagetext strong{
    font-weight: 600;
    color: var(--brand-red);
}
.authContainer_sec_right{
    width: 30%;
    background-color: #000;
    padding: 40px;
    flex-direction: column;
}
.authContainer_sec_right > p{
    font-size: 14px;
    color: #D3D3D3;
    text-align: center;
}
.authContainer_sec_right_form{
    flex: 1;
}
.formInputs{
    width: 100%;
}
.formInputs span{
    font-size: 14px;
    color: #fff;
    line-height: 20px;
}
.formInputs input{
    border: 0.8px solid #FFFFFF80;
    height: 50px;
    width: 100%;
    border-radius: 10px;
    padding: 10px;
    font-size: 14px;
    background-color: inherit !important;
    color: #fff;
    outline: 0;
    margin: 12px 0 4px;
    font-family: "Poppins", sans-serif;
}
.formInputs input::placeholder{
    color: #A8A8A8;
    font-style: italic;
}
.inputError{
    color: #DC2626;
    font-size: 13px;
    line-height: 20px;
}
.authForms{
    margin-top: 48px;
    flex-direction: column;
    gap: 24px;
}
.forgot_pass{
    margin-top: 12px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    display: inline-block;
    float: right;
    color: #fff;
}
.authForms button{
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 15px;
    color: #AA1A21;
    background: #FFFFFF;
    height: 48px;
    width: 100%;
    border-radius: 8px;
}
.errorInput input{
    border: 0.8px solid #DC2626
}
.authForms_sign_in{
    margin-top: 80px;
}
.authForms_sign_in p{
    font-family: "Inter", sans-serif;
    font-size: 24px;
    color: #fff;
}
.authForms_sign_in span, .authForms_sign_in a{
    padding-top: 5px;
    display: inline-block;
    font-size: 14px;
    color: #fff;
}
.authOtp{
    align-items: center;
    gap: 10px;
}
.authOtp input{
    font-family: "Poppins", sans-serif;
    border: 0.8px solid #FFFFFF80;
    height: 50px;
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    background-color: inherit;
    color: #fff;
    outline: 0;
    text-align: center;
    font-size: 18px;
}
#resetIcon, #successReset{
    text-align: center;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}
#resetIcon img{
    max-width: 170px;
    width: 100%;
    height: auto;
}
.backToLogin{
    display: inline-flex !important;
    align-items: baseline;
    gap: 10px;
}
.cnfmPass{
    position: relative;
}
.cnfmPass img{
    width: 24px;
    height: auto;
    position: absolute;
    top: 58%;
    transform: translateY(-50%);
    right: 10px;
}
#successReset .backToLogin svg{
    transform: rotate(180deg);
}
