.auth-cart-wrapper {
    display: flex;
    margin: 150px 0;
    flex-direction: column;
    align-items: center;
    gap:30px;
}
.auth-card {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.auth-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: -90px;
    right: 10px;
    width: 95%;
}
.auth-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.auth-logo-texts {
    display: flex;
    flex-direction: column;
}
.auth-logo-texts p{
    margin:0;
    font-size: 16px;
    font-weight: 500;
    color: var(--color_text_primary);
}
.auth-logo-texts span{
    font-size: 14px;
    color: var(--color_text_secondary);
}
.auth-top > svg{
    width: 70px;
    height: 60px;
}
.auth-header{
    display:flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.auth-header .auth-title{
    font-size: 18px;
    font-weight:600;
    color:#0A0731;
}
.auth-header p{
    font-size: 16px;
}
.auth-form-group{
    display: flex;
    align-items: center;
    background-color: #0A073108;
    padding: 10px;
    border-radius: 12px;
    height: 56px;
}
.auth-form-group i{
    margin-right: 15px;
}
.auth-form input, .auth-form input:focus{
    background-color: transparent;
    border: unset;
}
/**** OTP input styles ****/
#otp-box {
    background: #0A073108;
    border-radius: 12px;
    padding: 8px 0;
    text-align: center;
    cursor: text;
}
.otp-wrapper {
    direction: ltr;
    display: flex;
    justify-content: center;
    gap: 16px;
}
.otp-input {
    width: 30px;
    height: 40px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 21px;
    text-align: center;
    color: #4a4a4a;
    outline: none;
    caret-color: transparent;
}
.otp-input::placeholder {
    color: #777;
    opacity: .8;
}
.otp-input:not(:placeholder-shown) {
    font-weight: bold;
}
#otp-box:focus-within {
    background: #f3f3f3;
}
.auth-bottom-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.auth-back-btn {
    border: 0;
    padding: 10px 0;
    background: transparent;
}
.login-step-otp #otp-message{
    font-size: 14px;
}
.auth-submit-btn {
    color: var(--color-white);
    height: 56px;
    padding: 15px 24px;
    border: none;
    border-radius: 16px;
    background-color: #F7BB54;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;
}
.auth-link a{
    color: var(--color_primary);
    font-weight: 500;
}
.rtl-auth-page.hero-content-right{
    margin-top: 20px;
}
.rtl-auth-page.hero-content-right::before{
    display: none;
}
@media (min-width: 992px){
    .auth-header{
        align-items: flex-start;
    }
    .auth-card {
        width: 500px;
        height: 350px;
        padding: 32px;
    }
    .auth-top > svg{
        width: 92px;
        height: 83px;
    }
    .rtl-auth-page.hero-content-right{
        margin-top: 30px;
    }
}