/**
 * CIUZO Platform - Authentication Pages CSS
 * Login, Register Buyer, Register Seller
 */

/* ========================================
   Auth Page Base
======================================== */
.auth-page {
    min-height: 100vh;
    background: linear-gradient(180deg,
        #e8f1fc 0%,
        #d4e6f9 50%,
        #c5dff7 100%
    );
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* ========================================
   Form Side (Left)
======================================== */
.auth-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: white;
}

.auth-form-wrapper {
    width: 100%;
    max-width: 440px;
}

/* Logo */
.auth-logo {
    display: inline-block;
    margin-bottom: 32px;
}

.auth-logo img {
    height: 40px;
    width: auto;
}

/* Header */
.auth-header {
    margin-bottom: 32px;
}

.auth-header h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}

.auth-header p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Type Badge */
.auth-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.auth-type-badge svg {
    width: 16px;
    height: 16px;
}

.auth-type-buyer {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.auth-type-seller {
    background: rgba(245, 184, 0, 0.15);
    color: var(--accent-dark);
}

.badge-promo {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 4px;
}

/* Auth Icon Badge */
.auth-icon-badge {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.auth-icon-badge svg {
    width: 28px;
    height: 28px;
    color: white;
}

/* ========================================
   Form Styles
======================================== */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}

.form-group label svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    color: var(--text);
    background: white;
    transition: all 0.2s ease;
}

.form-group input::placeholder {
    color: var(--text-light);
}

.form-group input:hover {
    border-color: var(--primary-light);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Password Input */
.password-input-wrapper {
    position: relative;
}

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

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: var(--primary);
}

.password-toggle svg {
    width: 20px;
    height: 20px;
}

/* Account Type Selector */
.account-type-selector {
    display: flex;
    gap: 12px;
    width: 100%;
}

.type-option {
    flex: 1;
    width: 50%;
    cursor: pointer;
}

.type-option input {
    display: none;
}

.type-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 16px;
    width: 100%;
    height: 100%;
    min-height: 100px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s ease;
    text-align: center;
    box-sizing: border-box;
}

.type-box svg {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
}

.type-box span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.type-option input:checked + .type-box {
    border-color: var(--accent);
    background: rgba(245, 184, 0, 0.08);
}

.type-option input:checked + .type-box svg {
    color: var(--accent-dark);
}

.type-option input:checked + .type-box span {
    color: var(--accent-dark);
}

/* Form Options */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Checkbox */
.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-wrapper input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.checkbox-wrapper input:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-wrapper input:checked + .checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
}

.checkbox-wrapper a {
    color: var(--primary);
    text-decoration: underline;
}

.forgot-link {
    font-size: 0.875rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.forgot-link:hover {
    text-decoration: underline;
}

/* Submit Button */
.btn-full {
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
}

/* ========================================
   Divider
======================================== */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 28px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    font-size: 0.8125rem;
    color: var(--text-light);
    white-space: nowrap;
}

/* ========================================
   Register Options (on Login page)
======================================== */
.auth-register-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.register-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.register-option:hover {
    border-color: var(--primary);
    background: var(--bg-light);
}

.register-option-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.register-option-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.register-buyer .register-option-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.register-seller .register-option-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.register-seller .register-option-icon svg {
    color: var(--text);
}

.register-option-info {
    flex: 1;
}

.register-option-title {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.register-option-desc {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.register-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.register-arrow {
    width: 20px;
    height: 20px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.register-option:hover .register-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* ========================================
   Auth Footer & Switch
======================================== */
.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.auth-footer p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

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

.auth-footer-center {
    border-top: none;
    padding-top: 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.back-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.back-link:hover {
    color: var(--primary);
    text-decoration: none;
}

.back-link:hover svg {
    transform: translateX(-3px);
}

.auth-switch {
    margin-top: 20px;
}

.switch-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--bg-light);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.switch-link:hover {
    background: var(--bg-dark);
    color: var(--text);
}

.switch-link svg {
    width: 18px;
    height: 18px;
}

.switch-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 4px;
}

/* ========================================
   Visual Side (Right)
======================================== */
.auth-visual-side {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    overflow: hidden;
}

.auth-visual-seller {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
}

.auth-visual-content {
    position: relative;
    z-index: 1;
    max-width: 480px;
}

/* Visual Badge */
.visual-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.visual-badge svg {
    width: 18px;
    height: 18px;
}

/* Visual Heading */
.auth-visual-content h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 32px;
}

.auth-visual-content h2 span {
    color: var(--accent);
}

/* Visual Stats */
.visual-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.visual-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Visual Features */
.visual-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.visual-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 16px;
    height: 16px;
    color: #22c55e;
}

.feature-icon-accent {
    background: rgba(245, 184, 0, 0.2);
}

.feature-icon-accent svg {
    color: var(--accent);
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-text strong {
    font-size: 0.9375rem;
    font-weight: 600;
}

.feature-text span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Visual Testimonial */
.visual-testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-testimonial p {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 0.9375rem;
    font-weight: 600;
}

.author-role {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Visual Comparison */
.visual-comparison {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-old,
.comparison-new {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.comparison-old {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.comparison-new {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.comparison-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comparison-old .comparison-icon {
    background: rgba(239, 68, 68, 0.2);
}

.comparison-old .comparison-icon svg {
    width: 18px;
    height: 18px;
    color: #ef4444;
}

.comparison-new .comparison-icon {
    background: rgba(34, 197, 94, 0.2);
}

.comparison-new .comparison-icon svg {
    width: 18px;
    height: 18px;
    color: #22c55e;
}

.comparison-text {
    flex: 1;
}

.comparison-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.comparison-old .comparison-label {
    color: rgba(239, 68, 68, 0.9);
}

.comparison-new .comparison-label {
    color: #22c55e;
}

.comparison-text p {
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.comparison-text p strong {
    color: #fff;
    font-weight: 700;
}

/* Visual Steps */
.visual-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.visual-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent) 0%, #d4a000 100%);
    color: var(--text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 4px;
}

.step-content strong {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.step-content span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Visual Info Box */
.visual-info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-info-box svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 1px;
}

.visual-info-box p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.visual-info-box p strong {
    color: #fff;
    font-weight: 600;
}

/* Promo Banner (Seller) */
.promo-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(245, 184, 0, 0.2) 0%, rgba(245, 184, 0, 0.1) 100%);
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}

.promo-badge-large {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.promo-info {
    display: flex;
    flex-direction: column;
}

.promo-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
}

.promo-subtitle {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Visual Link */
.visual-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.visual-link:hover {
    color: white;
}

.visual-link svg {
    width: 16px;
    height: 16px;
}

/* Visual Shapes */
.visual-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.v-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.v-shape-1 {
    width: 400px;
    height: 400px;
    background: white;
    top: -100px;
    right: -100px;
}

.v-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -50px;
    left: -50px;
}

.v-shape-3 {
    width: 200px;
    height: 200px;
    background: white;
    top: 50%;
    left: 20%;
    opacity: 0.05;
}

/* ========================================
   Responsive - Tablet
======================================== */
@media (max-width: 1024px) {
    .auth-container {
        grid-template-columns: 1fr;
    }

    .auth-visual-side {
        display: none;
    }

    .auth-form-side {
        padding: 32px 24px;
    }

    .auth-form-wrapper {
        max-width: 480px;
    }
}

/* ========================================
   Responsive - Mobile
======================================== */
@media (max-width: 640px) {
    .auth-form-side {
        padding: 24px 20px;
    }

    .auth-header h1 {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .account-type-selector {
        flex-direction: column;
    }

    .type-option {
        width: 100%;
    }

    .visual-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* ========================================
   Input Validation States
======================================== */

/* Error State */
.input-error,
.auth-form input.input-error {
    border-color: #ef4444 !important;
    background-color: #fef2f2 !important;
}

.input-error:focus,
.auth-form input.input-error:focus {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* Valid State */
.input-valid,
.auth-form input.input-valid {
    border-color: #22c55e !important;
}

.input-valid:focus,
.auth-form input.input-valid:focus {
    border-color: #22c55e !important;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1) !important;
}

/* Field Error Message */
.field-error {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #ef4444;
    line-height: 1;
    animation: errorShake 0.3s ease-out;
}

.field-error svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

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

/* ========================================
   Button Loading State
======================================== */

.btn[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-spinner {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    animation: btnSpin 1s linear infinite;
}

@keyframes btnSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========================================
   Checkbox Error State
======================================== */

.checkbox-wrapper.checkbox-error .checkmark {
    border-color: #ef4444;
}

.checkbox-wrapper.checkbox-error {
    color: #ef4444;
}

/* ========================================
   Success State (Password Reset Email Sent)
======================================== */

.success-state {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.success-state h2 {
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.success-state p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.success-state .text-muted {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* ========================================
   Visual Steps (Forgot Password)
======================================== */

.visual-steps {
    margin: 40px 0;
}

.visual-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.step-number {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.step-content strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.step-content span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.visual-info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-top: 30px;
}

.visual-info-box svg {
    width: 20px;
    height: 20px;
    color: #F5B800;
    flex-shrink: 0;
    margin-top: 2px;
}

.visual-info-box p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.visual-info-box strong {
    color: #F5B800;
}

/* ========================================
   Reset Password Specific
======================================== */

.password-requirements {
    margin: 16px 0;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
}

.password-requirements h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.requirement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.requirement-item:last-child {
    margin-bottom: 0;
}

.requirement-item svg {
    width: 16px;
    height: 16px;
    color: #94a3b8;
}

.requirement-item.valid svg {
    color: #10b981;
}

.requirement-item.valid {
    color: #10b981;
}

/* Token Expired/Invalid State */
.error-state {
    text-align: center;
    padding: 20px 0;
}

.error-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.error-state h2 {
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.error-state p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}
