/**
 * استایل اختصاصی فرم احراز هویت سیت‌لند - نسخه ۳.۰.۰
 * هارمونی کامل با قالب
 *
 * @package SeatLand_Auth
 * @author فرخ دائی
 * @since 3.0.0
 */

/* ============================================================
   متغیرهای هارمونی با قالب
   ============================================================ */
:root {
    --auth-primary: #FFC50C;
    --auth-primary-dark: #E6B100;
    --auth-primary-light: #FFD94D;
    --auth-primary-rgb: 255, 197, 12;
    
    --auth-dark: #1a1a1a;
    --auth-dark-light: #2d2d2d;
    --auth-white: #FFFFFF;
    --auth-off-white: #F8F6F4;
    --auth-gray-light: #ECF0F1;
    --auth-gray: #95A5A6;
    --auth-gray-dark: #7F8C8D;
    
    --auth-success: #27AE60;
    --auth-danger: #E74C3C;
    --auth-warning: #F39C12;
    --auth-info: #3498DB;
    
    --auth-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --auth-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --auth-shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --auth-shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
    
    --auth-radius: 16px;
    --auth-radius-sm: 8px;
    --auth-radius-full: 9999px;
    
    --auth-font: 'Estedad', 'Samim', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ============================================================
   کانتینر اصلی
   ============================================================ */
.seatland-auth-wrapper {
    max-width: 440px;
    margin: 30px auto;
    background: var(--auth-white);
    border-radius: var(--auth-radius);
    box-shadow: var(--auth-shadow-lg);
    overflow: hidden;
    direction: rtl;
    font-family: var(--auth-font);
    border: 1px solid rgba(var(--auth-primary-rgb), 0.2);
}

/* ============================================================
   هدر
   ============================================================ */
.seatland-auth-wrapper .auth-header {
    background: linear-gradient(135deg, var(--auth-dark), var(--auth-dark-light));
    color: var(--auth-white);
    padding: 28px 20px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--auth-primary);
}

.seatland-auth-wrapper .auth-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--auth-primary-rgb), 0.08) 0%, transparent 70%);
    animation: authPulse 4s ease-in-out infinite;
}

@keyframes authPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

.seatland-auth-wrapper .auth-site-name {
    font-size: 1.4em;
    font-weight: 800;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.seatland-auth-wrapper .auth-site-name i {
    color: var(--auth-primary);
    margin-left: 8px;
}

.seatland-auth-wrapper .auth-page-title {
    font-size: 0.85em;
    opacity: 0.9;
    font-weight: 500;
    position: relative;
    z-index: 1;
    margin-top: 4px;
}

.seatland-auth-wrapper .auth-page-title i {
    margin-left: 6px;
}

/* ============================================================
   تب‌ها
   ============================================================ */
.seatland-auth-wrapper .auth-tabs {
    display: flex;
    background: var(--auth-off-white);
    border-bottom: 1px solid var(--auth-gray-light);
}

.seatland-auth-wrapper .auth-tab {
    flex: 1;
    padding: 14px 16px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--auth-gray-dark);
    font-weight: 700;
    font-size: 0.95em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--auth-font);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.seatland-auth-wrapper .auth-tab:hover {
    color: var(--auth-dark);
    background: rgba(var(--auth-primary-rgb), 0.05);
}

.seatland-auth-wrapper .auth-tab.active {
    color: var(--auth-dark);
    border-bottom-color: var(--auth-primary);
    background: var(--auth-white);
}

.seatland-auth-wrapper .auth-tab i {
    font-size: 1em;
}

/* ============================================================
   محتوا
   ============================================================ */
.seatland-auth-wrapper .auth-content {
    padding: 28px 24px 24px;
    background: var(--auth-white);
}

/* ============================================================
   فرم‌ها
   ============================================================ */
.seatland-auth-wrapper .auth-form {
    display: none;
    animation: authFadeIn 0.3s ease;
}

.seatland-auth-wrapper .auth-form.active {
    display: block;
}

@keyframes authFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   گروه‌های فرم
   ============================================================ */
.seatland-auth-wrapper .auth-group {
    margin-bottom: 18px;
    position: relative;
}

.seatland-auth-wrapper .auth-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85em;
    font-weight: 700;
    color: var(--auth-dark);
}

.seatland-auth-wrapper .auth-group label i {
    color: var(--auth-primary);
    margin-left: 6px;
    width: 18px;
}

/* ============================================================
   ورودی‌ها - استایل یکپارچه برای همه فیلدها
   ============================================================ */
.seatland-auth-wrapper .auth-input-wrapper {
    position: relative;
}

.seatland-auth-wrapper .auth-input-wrapper input {
    width: 100%;
    padding: 14px 44px 14px 14px;
    border: 2px solid var(--auth-gray-light);
    border-radius: var(--auth-radius-sm);
    background: var(--auth-off-white);
    transition: all 0.25s ease;
    font-size: 15px;
    color: var(--auth-dark);
    font-family: var(--auth-font);
    min-height: 48px;
    box-sizing: border-box;
}

.seatland-auth-wrapper .auth-input-wrapper input:focus {
    border-color: var(--auth-primary);
    background: var(--auth-white);
    outline: none;
    box-shadow: 0 0 0 4px rgba(var(--auth-primary-rgb), 0.12);
}

.seatland-auth-wrapper .auth-input-wrapper input.error {
    border-color: var(--auth-danger);
    background: #fee2e2;
}

.seatland-auth-wrapper .auth-input-wrapper input.success {
    border-color: var(--auth-success);
    background: #dcfce7;
}

.seatland-auth-wrapper .auth-input-wrapper input::placeholder {
    color: var(--auth-gray);
    font-size: 14px;
    padding-right: 4px;
}

/* آیکون داخل فیلدها */
.seatland-auth-wrapper .auth-input-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--auth-gray);
    font-size: 16px;
    transition: all 0.25s ease;
    pointer-events: none;
    z-index: 2;
    width: 18px;
    text-align: center;
}

.seatland-auth-wrapper .auth-input-wrapper:focus-within .auth-input-icon {
    color: var(--auth-primary);
}

/* دکمه نمایش/مخفی کردن رمز عبور */
.seatland-auth-wrapper .auth-toggle-pass {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--auth-gray);
    font-size: 17px;
    transition: all 0.25s ease;
    z-index: 10;
    background: none;
    border: none;
    padding: 4px;
}

.seatland-auth-wrapper .auth-toggle-pass:hover {
    color: var(--auth-primary);
}

/* ============================================================
   ستون‌های دو تایی برای نام و نام خانوادگی
   ============================================================ */
.seatland-auth-wrapper .auth-row {
    display: flex;
    gap: 14px;
    margin-bottom: 0;
}

.seatland-auth-wrapper .auth-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

/* ============================================================
   خطاها
   ============================================================ */
.seatland-auth-wrapper .auth-error-text {
    color: var(--auth-danger);
    font-size: 0.78em;
    margin-top: 5px;
    display: none;
    font-weight: 500;
    padding: 6px 10px;
    background: #fee2e2;
    border-radius: var(--auth-radius-sm);
    border-right: 3px solid var(--auth-danger);
}

.seatland-auth-wrapper .auth-error-text.show {
    display: block;
}

/* ============================================================
   دکمه‌ها
   ============================================================ */
.seatland-auth-wrapper .auth-btn {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: var(--auth-radius-sm);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    font-family: var(--auth-font);
}

.seatland-auth-wrapper .auth-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.seatland-auth-wrapper .auth-btn-primary {
    background: var(--auth-primary);
    color: var(--auth-dark);
    border: 2px solid var(--auth-primary);
}

.seatland-auth-wrapper .auth-btn-primary:hover:not(:disabled) {
    background: var(--auth-primary-dark);
    border-color: var(--auth-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(var(--auth-primary-rgb), 0.35);
}

.seatland-auth-wrapper .auth-btn-primary i {
    color: var(--auth-dark);
}

.seatland-auth-wrapper .auth-btn-outline {
    background: transparent;
    color: var(--auth-dark);
    border: 2px solid var(--auth-gray-light);
}

.seatland-auth-wrapper .auth-btn-outline:hover:not(:disabled) {
    background: var(--auth-off-white);
    border-color: var(--auth-primary);
}

/* ============================================================
   لینک‌ها
   ============================================================ */
.seatland-auth-wrapper .auth-links {
    text-align: center;
    margin-top: 18px;
    font-size: 0.85em;
    font-weight: 500;
}

.seatland-auth-wrapper .auth-links a {
    color: var(--auth-primary-dark);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.seatland-auth-wrapper .auth-links a:hover {
    color: var(--auth-primary);
    text-decoration: underline;
}

.seatland-auth-wrapper .auth-links a i {
    margin-left: 6px;
}

/* ============================================================
   پیام جهانی
   ============================================================ */
.seatland-auth-wrapper .auth-global-msg {
    padding: 12px 16px;
    border-radius: var(--auth-radius-sm);
    margin-bottom: 18px;
    text-align: center;
    font-size: 0.85em;
    display: none;
    font-weight: 600;
    border-right: 4px solid transparent;
}

.seatland-auth-wrapper .auth-global-msg.show {
    display: block;
}

.seatland-auth-wrapper .auth-global-msg.error {
    background: #fee2e2;
    color: #991b1b;
    border-right-color: var(--auth-danger);
}

.seatland-auth-wrapper .auth-global-msg.success {
    background: #dcfce7;
    color: #166534;
    border-right-color: var(--auth-success);
}

.seatland-auth-wrapper .auth-global-msg.info {
    background: #e0f2fe;
    color: #075985;
    border-right-color: var(--auth-info);
}

.seatland-auth-wrapper .auth-global-msg.warning {
    background: #fef3c7;
    color: #92400e;
    border-right-color: var(--auth-warning);
}

/* ============================================================
   OTP (کد تایید)
   ============================================================ */
.seatland-auth-wrapper .otp-mobile-info {
    text-align: center;
    font-size: 0.85em;
    color: var(--auth-gray-dark);
    margin-bottom: 16px;
    padding: 10px;
    background: var(--auth-off-white);
    border-radius: var(--auth-radius-sm);
    border: 1px solid var(--auth-gray-light);
}

.seatland-auth-wrapper .otp-mobile-info i {
    color: var(--auth-primary);
    margin-left: 6px;
}

.seatland-auth-wrapper .otp-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 20px 0 16px;
    direction: ltr;
}

.seatland-auth-wrapper .otp-input {
    width: 54px;
    height: 54px;
    text-align: center;
    font-size: 1.5em;
    font-weight: 700;
    border: 2px solid var(--auth-gray-light);
    border-radius: var(--auth-radius-sm);
    background: var(--auth-off-white);
    transition: all 0.2s ease;
    color: var(--auth-dark);
    padding: 0 !important;
    font-family: var(--auth-font);
}

.seatland-auth-wrapper .otp-input:focus {
    border-color: var(--auth-primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(var(--auth-primary-rgb), 0.12);
    transform: scale(1.04);
    background: var(--auth-white);
}

.seatland-auth-wrapper .otp-input.error {
    border-color: var(--auth-danger);
    background: #fee2e2;
    color: var(--auth-danger);
    animation: authShake 0.3s ease-in-out;
}

.seatland-auth-wrapper .otp-input.success {
    border-color: var(--auth-success);
    background: #dcfce7;
    color: var(--auth-success);
    animation: authPulseGreen 0.4s ease;
}

@keyframes authShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

@keyframes authPulseGreen {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); background: #bbf7d0; }
    100% { transform: scale(1); }
}

/* ============================================================
   تایمر OTP
   ============================================================ */
.seatland-auth-wrapper .otp-timer {
    text-align: center;
    font-size: 0.85em;
    color: var(--auth-gray-dark);
    margin: 8px 0 12px;
    font-weight: 500;
}

.seatland-auth-wrapper .otp-timer i {
    margin-left: 6px;
}

.seatland-auth-wrapper .otp-timer #auth-otp-countdown {
    color: var(--auth-primary-dark);
    font-weight: 700;
}

.seatland-auth-wrapper .otp-timer #auth-otp-countdown.warning {
    color: var(--auth-warning);
}

.seatland-auth-wrapper .otp-timer #auth-otp-countdown.danger {
    color: var(--auth-danger);
}

/* ============================================================
   دکمه ارسال مجدد
   ============================================================ */
.seatland-auth-wrapper .otp-resend {
    text-align: center;
    margin-top: 10px;
}

.seatland-auth-wrapper .otp-resend-btn {
    background: transparent;
    border: none;
    color: var(--auth-primary-dark);
    cursor: pointer;
    font-size: 0.85em;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--auth-radius-sm);
    transition: all 0.25s ease;
    font-family: var(--auth-font);
    border: 1px solid transparent;
}

.seatland-auth-wrapper .otp-resend-btn:hover:not(:disabled) {
    background: var(--auth-primary);
    color: var(--auth-dark);
    border-color: var(--auth-primary);
}

.seatland-auth-wrapper .otp-resend-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    color: var(--auth-gray);
}

/* ============================================================
   لودینگ
   ============================================================ */
.seatland-auth-wrapper .otp-loading .spinner {
    display: inline-block;
    width: 28px;
    height: 28px;
    border: 3px solid var(--auth-gray-light);
    border-top-color: var(--auth-primary);
    border-radius: 50%;
    animation: authSpin 0.6s linear infinite;
}

@keyframes authSpin {
    to { transform: rotate(360deg); }
}

.seatland-auth-wrapper .otp-loading p {
    margin-top: 8px;
    font-size: 0.85em;
    color: var(--auth-gray-dark);
}

/* ============================================================
   وضعیت OTP
   ============================================================ */
.seatland-auth-wrapper .otp-status {
    text-align: center;
    font-size: 0.85em;
    margin-top: 10px;
    font-weight: 500;
    padding: 10px;
    border-radius: var(--auth-radius-sm);
    display: none;
}

.seatland-auth-wrapper .otp-status.show {
    display: block;
}

.seatland-auth-wrapper .otp-status.success {
    color: var(--auth-success);
    background: #dcfce7;
    border: 1px solid var(--auth-success);
}

.seatland-auth-wrapper .otp-status.error {
    color: var(--auth-danger);
    background: #fee2e2;
    border: 1px solid var(--auth-danger);
}

.seatland-auth-wrapper .otp-status.info {
    color: var(--auth-info);
    background: #e0f2fe;
    border: 1px solid var(--auth-info);
}

/* ============================================================
   تغییر اجباری رمز
   ============================================================ */
.seatland-auth-wrapper .auth-force-change {
    text-align: center;
    padding: 14px;
    background: #fef3c7;
    border-radius: var(--auth-radius-sm);
    margin-bottom: 20px;
    border: 1px solid var(--auth-warning);
}

.seatland-auth-wrapper .auth-force-change i {
    font-size: 2em;
    color: var(--auth-warning);
    display: block;
    margin-bottom: 6px;
}

.seatland-auth-wrapper .auth-force-change p {
    font-size: 0.85em;
    color: #92400e;
    margin: 0;
    font-weight: 500;
}

/* ============================================================
   بازیابی رمز
   ============================================================ */
.seatland-auth-wrapper .auth-recover-info {
    text-align: center;
    padding: 12px;
    margin-bottom: 18px;
    background: var(--auth-off-white);
    border-radius: var(--auth-radius-sm);
    border: 1px solid var(--auth-gray-light);
}

.seatland-auth-wrapper .auth-recover-info i {
    font-size: 1.8em;
    color: var(--auth-primary);
    display: block;
    margin-bottom: 4px;
}

.seatland-auth-wrapper .auth-recover-info p {
    font-size: 0.85em;
    color: var(--auth-gray-dark);
    margin: 0;
}

/* ============================================================
   فوتر
   ============================================================ */
.seatland-auth-wrapper .auth-footer {
    padding: 14px 20px;
    background: var(--auth-off-white);
    border-top: 1px solid var(--auth-gray-light);
    text-align: center;
    font-size: 0.78em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.seatland-auth-wrapper .auth-footer a {
    color: var(--auth-gray-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.seatland-auth-wrapper .auth-footer a:hover {
    color: var(--auth-primary-dark);
}

.seatland-auth-wrapper .auth-footer i {
    font-size: 0.9em;
}

.seatland-auth-wrapper .auth-footer-sep {
    color: var(--auth-gray-light);
}

/* ============================================================
   متر رمز عبور
   ============================================================ */
.seatland-auth-wrapper .password-meter {
    height: 4px;
    background: var(--auth-gray-light);
    margin-top: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.seatland-auth-wrapper .password-meter-bar {
    height: 100%;
    width: 0;
    transition: width 0.35s ease;
    border-radius: 4px;
}

.seatland-auth-wrapper .pass-hint {
    font-size: 0.75em;
    margin-top: 5px;
    color: var(--auth-gray-dark);
}

.seatland-auth-wrapper .pass-hint i {
    margin-left: 4px;
}

/* ============================================================
   کاربر وارد شده (Logged In)
   ============================================================ */
.seatland-logged-in-message {
    text-align: center;
    padding: 30px 20px;
}

.seatland-logged-in-message i {
    font-size: 3em;
    color: var(--auth-success);
    display: block;
    margin-bottom: 12px;
}

.seatland-logged-in-message p {
    font-size: 1.1em;
    margin-bottom: 16px;
}

.seatland-logged-in-message .btn {
    margin: 4px 6px;
}

/* ============================================================
   ریسپانسیو
   ============================================================ */
@media (max-width: 768px) {
    .seatland-auth-wrapper {
        max-width: 100%;
        margin: 15px 10px;
        border-radius: var(--auth-radius-sm);
    }

    .seatland-auth-wrapper .auth-content {
        padding: 20px 16px 16px;
    }

    .seatland-auth-wrapper .auth-header {
        padding: 20px 16px 16px;
    }

    .seatland-auth-wrapper .auth-site-name {
        font-size: 1.2em;
    }

    .seatland-auth-wrapper .auth-tab {
        padding: 12px;
        font-size: 0.85em;
    }

    .seatland-auth-wrapper .auth-input-wrapper input {
        padding: 12px 40px 12px 12px;
        font-size: 14px;
        min-height: 44px;
    }

    .seatland-auth-wrapper .auth-btn {
        padding: 12px 16px;
        font-size: 14px;
        min-height: 44px;
    }

    .seatland-auth-wrapper .otp-input {
        width: 46px;
        height: 46px;
        font-size: 1.3em;
    }

    .seatland-auth-wrapper .otp-container {
        gap: 8px;
    }

    .seatland-auth-wrapper .auth-row {
        flex-direction: column;
        gap: 0;
    }

    .seatland-auth-wrapper .auth-col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .seatland-auth-wrapper .auth-footer {
        flex-direction: column;
        gap: 4px;
        padding: 12px 16px;
    }

    .seatland-auth-wrapper .auth-footer-sep {
        display: none;
    }
}

@media (max-width: 480px) {
    .seatland-auth-wrapper {
        margin: 10px 6px;
        border-radius: 12px;
    }

    .seatland-auth-wrapper .auth-content {
        padding: 16px 12px 12px;
    }

    .seatland-auth-wrapper .auth-header {
        padding: 16px 12px 12px;
    }

    .seatland-auth-wrapper .auth-site-name {
        font-size: 1em;
    }

    .seatland-auth-wrapper .auth-page-title {
        font-size: 0.75em;
    }

    .seatland-auth-wrapper .auth-tab {
        padding: 10px 8px;
        font-size: 0.75em;
    }

    .seatland-auth-wrapper .auth-tab i {
        font-size: 0.9em;
    }

    .seatland-auth-wrapper .auth-input-wrapper input {
        padding: 10px 36px 10px 10px;
        font-size: 13px;
        min-height: 40px;
    }

    .seatland-auth-wrapper .auth-input-icon {
        right: 10px;
        font-size: 14px;
        width: 16px;
    }

    .seatland-auth-wrapper .auth-toggle-pass {
        left: 10px;
        font-size: 14px;
    }

    .seatland-auth-wrapper .auth-btn {
        padding: 10px 14px;
        font-size: 13px;
        min-height: 40px;
    }

    .seatland-auth-wrapper .otp-input {
        width: 40px;
        height: 40px;
        font-size: 1.1em;
    }

    .seatland-auth-wrapper .otp-container {
        gap: 6px;
    }

    .seatland-auth-wrapper .auth-group {
        margin-bottom: 12px;
    }

    .seatland-auth-wrapper .auth-group label {
        font-size: 0.8em;
    }

    .seatland-auth-wrapper .auth-links {
        font-size: 0.75em;
        margin-top: 14px;
    }

    .seatland-auth-wrapper .auth-global-msg {
        font-size: 0.78em;
        padding: 10px 12px;
    }

    .seatland-auth-wrapper .auth-force-change p {
        font-size: 0.78em;
    }

    .seatland-auth-wrapper .auth-recover-info p {
        font-size: 0.78em;
    }

    .seatland-auth-wrapper .otp-mobile-info {
        font-size: 0.78em;
    }

    .seatland-auth-wrapper .otp-timer {
        font-size: 0.78em;
    }

    .seatland-auth-wrapper .otp-resend-btn {
        font-size: 0.78em;
    }

    .seatland-auth-wrapper .otp-status {
        font-size: 0.78em;
    }

    .seatland-auth-wrapper .pass-hint {
        font-size: 0.7em;
    }
}

/* ============================================================
   پشتیبانی از RTL
   ============================================================ */
.rtl .seatland-auth-wrapper .auth-input-icon {
    right: 14px;
    left: auto;
}

.rtl .seatland-auth-wrapper .auth-toggle-pass {
    left: 14px;
    right: auto;
}

.rtl .seatland-auth-wrapper .auth-links a i {
    margin-left: 6px;
    margin-right: 0;
}

.rtl .seatland-auth-wrapper .auth-btn i {
    margin-left: 8px;
    margin-right: 0;
}

@media (max-width: 480px) {
    .rtl .seatland-auth-wrapper .auth-input-icon {
        right: 10px;
    }
    
    .rtl .seatland-auth-wrapper .auth-toggle-pass {
        left: 10px;
    }
}

/* ============================================================
   اسکرول‌بار سفارشی
   ============================================================ */
.seatland-auth-wrapper ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.seatland-auth-wrapper ::-webkit-scrollbar-track {
    background: var(--auth-off-white);
    border-radius: 4px;
}

.seatland-auth-wrapper ::-webkit-scrollbar-thumb {
    background: var(--auth-primary);
    border-radius: 4px;
}

.seatland-auth-wrapper ::-webkit-scrollbar-thumb:hover {
    background: var(--auth-primary-dark);
}