/**
 * Authentication Pages Styles
 * Mobile-first design for Customer Portal
 */

/* Auth Page Container */
.auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 24px 16px;
}

@media (min-width: 768px) {
    .auth-page {
        padding: 40px 24px;
    }
}

/* Auth Container */
.auth-container {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 48px);
}

.auth-container--wizard {
    max-width: 500px;
}

@media (min-width: 768px) {
    .auth-container {
        min-height: auto;
        background: #ffffff;
        border-radius: 24px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        padding: 40px;
    }

    .auth-container--wizard {
        max-width: 520px;
        padding: 32px 40px;
    }
}

/* Auth Header */
.auth-header {
    text-align: center;
    padding-top: 24px;
    padding-bottom: 24px;
}

@media (min-width: 768px) {
    .auth-header {
        padding-top: 0;
        padding-bottom: 20px;
    }
}

.auth-logo {
    height: 48px;
    width: auto;
    margin-bottom: 24px;
}

.auth-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0, 180, 216, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.auth-avatar i {
    font-size: 32px;
    color: #00B4D8;
}

.auth-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
    font-style: italic;
}

.auth-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Auth Form Wrapper */
.auth-form-wrapper {
    flex: 1;
    padding: 8px 0;
    overflow: visible;
}

/* Auth Alert */
.auth-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 14px;
}

.auth-alert--error {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #dc2626;
}

.auth-alert--success {
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.2);
    color: #16a34a;
}

.auth-alert i {
    font-size: 20px;
    flex-shrink: 0;
}

/* Auth Field */
.auth-field {
    margin-bottom: 20px;
    position: relative;
}

.auth-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

/* Auth Input Group */
.auth-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-input-group--focused,
.auth-input-group:focus-within {
    border-color: #00B4D8;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.08);
}

.auth-input-group--error {
    border-color: #dc2626;
}

.auth-input-icon {
    position: absolute;
    left: 16px;
    color: #9ca3af;
    font-size: 18px;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.auth-input-group--focused .auth-input-icon,
.auth-input-group:focus-within .auth-input-icon {
    color: #00B4D8;
}

.auth-input {
    flex: 1;
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a2e !important;
    border-radius: 12px;
}

.auth-input::placeholder {
    color: #9ca3af !important;
    font-weight: 400;
}

.auth-input:focus {
    outline: none;
}

.auth-input--password {
    padding-right: 48px;
}

/* Toggle Password Button */
.auth-toggle-password {
    position: absolute;
    right: 12px;
    padding: 8px;
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.auth-toggle-password:hover {
    color: #6b7280;
}

/* Field Error */
.auth-field-error {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 13px;
    color: #dc2626;
}

.auth-field-error i {
    font-size: 14px;
}

/* Auth Options */
.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

/* Custom Checkbox */
.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #6b7280;
}

.auth-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.auth-checkbox-mark {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.auth-checkbox input:checked + .auth-checkbox-mark {
    background: #00B4D8;
    border-color: #00B4D8;
}

.auth-checkbox input:checked + .auth-checkbox-mark::after {
    content: '\2713';
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.auth-checkbox input:focus + .auth-checkbox-mark {
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.10);
}

/* Auth Link */
.auth-link {
    font-size: 14px;
    font-weight: 600;
    color: #00B4D8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-link:hover {
    color: #007A94;
}

/* Auth Button */
.auth-btn {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.auth-btn--primary {
    background: #00B4D8;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 180, 216, 0.30);
}

.auth-btn--primary:hover {
    background: #0090AC;
    transform: translateY(-1px);
}

.auth-btn--primary:active {
    transform: scale(0.98);
}

.auth-btn--primary:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.auth-btn--secondary {
    background: #f3f4f6;
    color: #1a1a2e;
    border: 1px solid #e5e7eb;
}

.auth-btn--secondary:hover {
    background: #e5e7eb;
}

.auth-btn--outline {
    background: transparent;
    color: #00B4D8;
    border: 2px solid #00B4D8;
}

.auth-btn--outline:hover {
    background: rgba(0, 180, 216, 0.08);
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    padding-top: 24px;
    padding-bottom: 16px;
}

.auth-footer-text {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px;
}

.auth-footer-link {
    font-weight: 600;
    color: #00B4D8;
    text-decoration: none;
}

.auth-footer-link:hover {
    color: #007A94;
}

.auth-version {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

/* Step Wizard Styles - IMPROVED
   ================================ */
.auth-wizard {
    position: relative;
    overflow: visible;
}

.auth-wizard-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    padding: 0 8px;
}

.auth-wizard-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
}

.auth-wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}

.auth-wizard-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    background: #e5e7eb;
    color: #6b7280;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.auth-wizard-step--active .auth-wizard-step-number {
    background: #00B4D8;
    color: #ffffff;
}

.auth-wizard-step--completed .auth-wizard-step-number {
    background: #16a34a;
    color: #ffffff;
}

.auth-wizard-step--completed .auth-wizard-step-number i {
    font-size: 14px;
}

.auth-wizard-step-label {
    font-size: 11px;
    font-weight: 500;
    color: #9ca3af;
    white-space: nowrap;
    text-align: center;
}

.auth-wizard-step--active .auth-wizard-step-label {
    color: #1a1a2e;
    font-weight: 600;
}

.auth-wizard-step--completed .auth-wizard-step-label {
    color: #16a34a;
}

.auth-wizard-connector {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    border-radius: 1px;
    margin: 0 8px;
    margin-bottom: 20px;
    min-width: 24px;
    max-width: 40px;
}

.auth-wizard-connector--completed {
    background: #16a34a;
}

/* Responsive wizard for smaller screens */
@media (max-width: 480px) {
    .auth-wizard-steps {
        max-width: 100%;
    }

    .auth-wizard-step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .auth-wizard-step-label {
        font-size: 10px;
    }

    .auth-wizard-connector {
        min-width: 16px;
        max-width: 28px;
        margin: 0 4px;
        margin-bottom: 18px;
    }
}

/* Wizard Step Content */
.auth-wizard-content {
    min-height: 280px;
}

.auth-wizard-step-content {
    display: none;
    animation: fadeIn 0.3s ease;
    overflow: visible;
}

.auth-wizard-step-content.active {
    display: block;
}

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

.auth-step-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.auth-step-description {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 24px;
}

/* Wizard Navigation */
.auth-wizard-nav {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.auth-wizard-nav .auth-btn {
    flex: 1;
}

/* Password Strength Indicator */
.auth-password-strength {
    margin-top: 10px;
}

.auth-password-strength-bar {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
}

.auth-password-strength-fill {
    height: 100%;
    width: 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.auth-password-strength-fill--weak {
    width: 33%;
    background: #dc2626;
}

.auth-password-strength-fill--medium {
    width: 66%;
    background: #f59e0b;
}

.auth-password-strength-fill--strong {
    width: 100%;
    background: #16a34a;
}

.auth-password-strength-text {
    font-size: 12px;
    color: #6b7280;
}

/* Terms Checkbox */
.auth-terms {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.auth-terms a {
    color: #00B4D8;
    text-decoration: none;
}

.auth-terms a:hover {
    text-decoration: underline;
}

/* ================================
   Account Type Selection Cards
   ================================ */
.auth-account-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.auth-account-type-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.auth-account-type-card:hover {
    border-color: #d1d5db;
    background: #f3f4f6;
}

.auth-account-type-card--selected {
    border-color: #00B4D8;
    background: rgba(0, 180, 216, 0.04);
}

.auth-account-type-card--selected:hover {
    border-color: #00B4D8;
    background: rgba(0, 180, 216, 0.06);
}

.auth-account-type-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.auth-account-type-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.auth-account-type-card--selected .auth-account-type-icon {
    background: #00B4D8;
}

.auth-account-type-icon i {
    font-size: 26px;
    color: #6b7280;
}

.auth-account-type-card--selected .auth-account-type-icon i {
    color: #ffffff;
}

.auth-account-type-label {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
    display: block;
}

.auth-account-type-desc {
    font-size: 13px;
    color: #9ca3af;
    display: block;
}

/* Select Wrapper */
.auth-select-wrapper {
    position: relative;
}

.auth-select {
    width: 100%;
    padding: 16px 40px 16px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f8f9fa;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a2e;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.auth-select:focus {
    outline: none;
    border-color: #00B4D8;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.08);
}

.auth-select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    pointer-events: none;
}

/* Success/Completion State */
.auth-success {
    text-align: center;
    padding: 40px 20px;
}

.auth-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.auth-success-icon i {
    font-size: 40px;
    color: #16a34a;
}

.auth-success-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
}

.auth-success-message {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 32px;
    line-height: 1.6;
}

/* Phone Input with Country Code */
.auth-phone-wrapper {
    display: flex;
    gap: 8px;
    position: relative;
    isolation: isolate;
}

.auth-phone-code {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    min-width: 110px;
    transition: all 0.2s ease;
}

.auth-phone-code:hover {
    border-color: #d1d5db;
    background: #f3f4f6;
}

/* Flag container styles */
.auth-phone-flag-container,
.auth-country-flag-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
}

.auth-flag-emoji {
    font-size: 20px;
    line-height: 1;
}

.auth-flag-img {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
}

.auth-flag-img--small {
    width: 20px;
    height: 15px;
}

.auth-flag-text {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    background: #e5e7eb;
    padding: 2px 6px;
    border-radius: 4px;
}

.auth-phone-code span:not(.auth-phone-flag-container):not(.auth-flag-emoji):not(.auth-flag-text) {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.auth-phone-code i.ph-caret-down {
    font-size: 14px;
    color: #6b7280;
    margin-left: auto;
}

.auth-input-group--phone {
    flex: 1;
}

.auth-input--phone {
    padding-left: 16px !important;
}

/* Phone/Country Dropdown */
.auth-phone-dropdown,
.auth-country-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 300px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Ensure the dropdown appears above other content */
.auth-field {
    position: relative;
    z-index: 1;
}

.auth-field:has(.auth-phone-dropdown:not(.d-none)),
.auth-field:has(.auth-country-dropdown:not(.d-none)) {
    z-index: 1001;
}

.auth-phone-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
    background: #fafafa;
}

.auth-phone-search i {
    color: #9ca3af;
    font-size: 18px;
}

.auth-phone-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #1a1a2e;
    outline: none;
}

.auth-phone-search input::placeholder {
    color: #9ca3af;
}

.auth-phone-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.auth-phone-item,
.auth-country-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.auth-phone-item:hover,
.auth-country-item:hover {
    background: #f3f4f6;
}

.auth-phone-item-flag,
.auth-country-item-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
}

.auth-phone-item-flag .auth-flag-emoji,
.auth-country-item-flag .auth-flag-emoji {
    font-size: 22px;
}

.auth-phone-item-name,
.auth-country-item-name {
    flex: 1;
    font-size: 14px;
    color: #1a1a2e;
    font-weight: 500;
}

.auth-phone-item-code {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}

/* Country Select (Residence) */
.auth-country-select {
    position: relative;
    isolation: isolate;
}

.auth-country-selected {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-country-selected:hover {
    border-color: #d1d5db;
    background: #f3f4f6;
}

.auth-country-flag-container {
    min-width: 24px;
}

.auth-country-selected span#selectedCountryName {
    flex: 1;
    font-size: 15px;
    color: #1a1a2e;
    font-weight: 500;
}

.auth-country-selected i {
    color: #6b7280;
}

/* Gender Selection */
.auth-gender-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.auth-gender-option {
    cursor: pointer;
}

.auth-gender-option input {
    position: absolute;
    opacity: 0;
}

.auth-gender-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.auth-gender-option input:checked + .auth-gender-box {
    border-color: #00B4D8;
    background: rgba(0, 180, 216, 0.04);
}

.auth-gender-box i {
    font-size: 28px;
    color: #6b7280;
}

.auth-gender-option input:checked + .auth-gender-box i {
    color: #00B4D8;
}

.auth-gender-box span {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
}

/* Optional Label */
.auth-optional {
    font-weight: 400;
    color: #9ca3af;
    font-size: 13px;
}

.auth-required {
    color: #ef4444;
    margin-left: 2px;
    font-weight: 700;
}

/* OTP Verification */
.auth-otp-container {
    text-align: center;
    padding: 20px 0;
}

.auth-otp-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0, 180, 216, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.auth-otp-icon i {
    font-size: 32px;
    color: #00B4D8;
}

.auth-otp-inputs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 24px 0;
}

.auth-otp-input {
    width: 48px;
    height: 56px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #f8f9fa;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    color: #1a1a2e;
    transition: all 0.2s ease;
}

.auth-otp-input:focus {
    outline: none;
    border-color: #00B4D8;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.08);
}

.auth-otp-input.filled {
    border-color: #00B4D8;
    background: rgba(0, 180, 216, 0.04);
}

@media (max-width: 400px) {
    .auth-otp-input {
        width: 42px;
        height: 50px;
        font-size: 20px;
    }

    .auth-otp-inputs {
        gap: 6px;
    }
}

.auth-btn--full {
    width: 100%;
    margin-top: 16px;
}

.auth-resend-text {
    margin-top: 20px;
    font-size: 14px;
    color: #6b7280;
}

.auth-resend-btn {
    background: transparent;
    border: none;
    color: #00B4D8;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.auth-resend-btn:disabled {
    color: #9ca3af;
    cursor: not-allowed;
}

/* Countdown */
.auth-countdown {
    margin: 24px 0;
    text-align: center;
}

.auth-countdown p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.auth-countdown-number {
    font-size: 48px;
    font-weight: 700;
    color: #00B4D8;
    line-height: 1.2;
    margin: 8px 0;
}

/* Safe area for mobile devices */
@supports (padding: max(0px)) {
    .auth-page {
        padding-top: max(24px, env(safe-area-inset-top));
        padding-bottom: max(24px, env(safe-area-inset-bottom));
    }
}

/* Hide legacy preloader elements for cleaner auth page */
.auth-page ~ .preloder,
.auth-page ~ .progress-wrap,
.auth-page ~ .cursor,
.auth-page ~ .dot {
    display: none !important;
}

/* Loading overlay for form submission */
.auth-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.auth-loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e5e7eb;
    border-top-color: #00B4D8;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.auth-loading-text {
    margin-top: 16px;
    font-size: 14px;
    color: #6b7280;
}

/* ==================== Dark Mode Overrides ==================== */
[data-theme="dark"] .auth-page {
    background: linear-gradient(135deg, #0f1117 0%, #111827 100%);
}

[data-theme="dark"] .auth-container {
    background: #111827;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

[data-theme="dark"] .auth-title {
    color: #f3f4f6;
}

[data-theme="dark"] .auth-subtitle {
    color: #9ca3af;
}

[data-theme="dark"] .auth-label {
    color: #d1d5db;
}

[data-theme="dark"] .auth-input-group {
    background: #1f2937;
    border-color: #374151;
}

[data-theme="dark"] .auth-input {
    color: #f3f4f6 !important;
}

[data-theme="dark"] .auth-input::placeholder {
    color: #6b7280 !important;
}

[data-theme="dark"] .auth-footer-text {
    color: #9ca3af;
}

[data-theme="dark"] .auth-version {
    color: #6b7280;
}

[data-theme="dark"] .auth-checkbox {
    color: #9ca3af;
}
