@font-face {
    font-family: 'IRANSansFaNumerals';
    src: url('../../general/fonts/IRANSansXFaNum-Regular.woff') format('woff'),
    url('../../general/fonts/IRANSansXFaNum-Regular.woff2') format('woff2'),
    url('../../general/fonts/IRANSansXFaNum-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Amiri';
    src: url('../../general/fonts/Amiri-Regular.woff') format('woff'),
    url('../../general/fonts/Amiri-Regular.woff2') format('woff2'),
    url('../../general/fonts/amiri-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
html, body {
    font-family: 'IRANSansFaNumerals', sans-serif !important;
}
.amiri {
    font-family: 'Amiri', sans-serif !important;
}
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f7f8fa;
    padding: 20px;
}

.pull-left {float: left}

/* Card */
.auth-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: #fff;
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    direction: rtl;
    text-align: right;
}

/* Back Arrow */
.auth-back {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 20px;
    color: var(--bs-primary);
}

/* Title */
.auth-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    color: #94D2BD;
}

/* Inputs */
.auth-group {
    margin-bottom: 12px;
}

.auth-label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
    color: #001219;
}

.auth-input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: border-color .25s ease;
}

.auth-input:focus {
    border-color: #E9D8A6;
    outline: none;
}

/* Error text */
.auth-error {
    font-size: 12px;
    color: #BB3E03;
    margin-top: 4px;
}

/* Button */
.auth-btn {
    width: 100%;
    background: #0A9396;
    color: #fff;
    border: 2px solid #E9D8A6;
    padding: 12px;
    font-size: 16px;
    border-radius: 10px;
    margin-top: 10px;
    transition: .25s;
}

.auth-btn:hover {
    opacity: .9;
}

/* Timer */
.auth-timer {
    font-size: 24px;
    text-align: center;
    margin-top: 15px;
    color: #BB3E03;
}

/* OTP boxes */
.auth-otp-box {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 6px;
}

.auth-otp {
    width: 45px;
    height: 50px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 20px;
    transition: border-color .25s ease;
    color: #005F73;
}

.auth-otp:focus {
    border-color: #E9D8A6;
    outline: none;
}

.fs-38 {font-size: 38px}
.fs-28 {font-size: 28px}
.color-light {color: #94D2BD}
.d-none {display: none !important;}

/* Responsive */
@media (max-width: 400px) {
    .auth-otp {
        width: 38px;
        height: 45px;
        font-size: 18px;
    }
}
