.auth-wrapper {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    height: 100vh;
    justify-content: space-evenly;
    align-items: center;
    background: #ff7413;
}

.auth-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-right: 10%;
}

.step {
    padding: 2rem 1.5rem;
    background: #faf6f3;
    border-radius: 1.6rem;
    margin-top: 1.3rem;
    box-shadow: 4px 4px 2px #eb6100;
    border: 1px solid #e45e00;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.login-container {
    padding: 2rem;
    /* background: #FFF; */
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
}

.mobile-input {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    gap: .2rem;
}

.form-inner label {
    width: 100%;
    text-align: right;
    direction: rtl;
    color: #343434;
}

.form-inner input {
    height: 50px;
    border: 2px solid #d6d6d6;
    border-radius: 0.6rem;
    padding: 0 1rem;
    text-align: center;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: #606060;
    width: 100%;
    font-family: 'kalameh';
    background-color: #faf6f3;
    direction: ltr;
}

.form-inner input:focus-visible {
    outline: 2px solid #ff6900;
    border: none
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.auth-button {
    height: 50px;
    border: none;
    border-radius: 1rem;
    font-family: 'YekanBakh';
    font-weight: bold;
    background: #ff6900;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
}

.heading {
    line-height: 1.4;
}

.heading h1 {
    color: #FFF;
    font-size: 3.2rem;
    text-shadow: 1px 2px 2px #00000054;
}

.heading span {
    color: #FFF;
    font-weight: bold;
    font-size: 2rem;
    text-shadow: 1px 2px 1px #0000002d;
}

.auth-image {
    display: flex;
    height: 100vh;
    align-items: flex-end;
}

.auth-image img {
    height: 95vh;
    filter: drop-shadow(2px 4px 18px #3c1c001f);
}

.hide {
    display: none;
}

.retry-otp {
    text-align: center;
    direction: rtl;
    font-family: 'kalameh';
    color: #646464;
    font-size: 0.9rem;
}

.retry-otp-button {
    background: none;
    border: none;
    font-weight: bold;
    font-family: 'kalameh';
    color: #ee6200;
    font-size: 0.95rem;
    cursor: pointer;
}

@media (max-width: 1500px) {
    .auth-container {
        margin-right: 2%;
    }

    .auth-image img {
        height: 90vh;
    }
}

@media (max-width: 1330px) {
    .auth-container {
        margin-right: 0%;
    }

    .auth-image img {
        height: 80vh;
    }
}

@media (max-width: 1225px) {
    .heading h1 {
        font-size: 2.7rem;
    }
}

@media (max-width: 1150px) {
    .auth-container {
        gap: 0;
    }

    .heading h1 {
        font-size: 2.2rem;
    }

    .heading span {
        font-size: 1.5rem;
    }

    .login-container {
        padding-left: 0;
        padding-right: 2rem;
    }

    body {
        background: #ff7413;
    }

    .auth-wrapper {
        height: unset;
    }

    .auth-container {
        flex-direction: column;
    }

    .form-wrapper {
        margin-top: 3rem;
    }

    .auth-image {
        height: unset;
    }

    .auth-image img {
        height: unset;
        width: 60%;
        margin-right: 70px;
        position: relative;
        bottom: 0;
        right: 45%;
        transform: translateX(55%);
        margin-top: 1.5rem;
    }

    .login-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .auth-container {
        justify-content: space-between;
        height: 100%;
        min-height: 100vh;
    }
}

@media (max-width: 780px) {
    .auth-image img {
        width: 80%;
    }
}

@media (max-width: 500px) {
    .auth-image img {
        margin-right: 0;
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
    }
    .form-wrapper {
        margin-top: 8rem;
    }
}

@media (max-width: 410px) {
    .heading h1 {
        font-size: 2rem;
    }

    .heading span {
        font-size: 1.3rem;
    }

    .auth-image img {
        width: 300px;
    }

}

@media (max-width: 360px) {}