/**
 * Authentication Forms CSS
 * Styles for login, register, forgot password, and reset password forms
 */

/* Container */
.auth-form-container {
    max-width: 416px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(148, 163, 184, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
}

.auth-form-container h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 600;
    color: #f1f5f9;
    text-align: center;
}

.auth-form-container > p {
    margin: 0 0 30px 0;
    color: #94a3b8;
    text-align: center;
}

/* Form */
.auth-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.password-field {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #cbd5e1;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    background: #0f172a !important;
    border: 1px solid #334155;
    border-radius: 8px;
    font-size: 16px;
    color: #e2e8f0 !important;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

/* Password field with eye icon */
.form-group.password-field {
    position: relative;
}

.form-group.password-field input[type="password"],
.form-group.password-field input[type="text"] {
    padding-right: 48px;
}

/* Disable browser autocomplete styling */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 9999px #0f172a inset !important;
    box-shadow: 0 0 0 9999px #0f172a inset !important;
    -webkit-text-fill-color: #e2e8f0 !important;
    color: #e2e8f0 !important;
    caret-color: #e2e8f0 !important;
    transition: background-color 9999s ease-in-out 0s, color 9999s ease-in-out 0s;
}

.form-group input:autofill,
input:autofill {
    background-color: #0f172a !important;
    color: #e2e8f0 !important;
}

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    background: #1e293b;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder {
    color: #64748b;
}

.form-group input.error {
    border-color: #ef4444;
}

.form-group .error {
    display: block;
    margin-top: 6px;
    color: #ef4444;
    font-size: 13px;
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: #94a3b8;
    font-size: 13px;
}

/* Checkbox → Green Toggle Switch (matches app installer style) */
.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox label,
.checkbox-label {
    display: inline-flex;
    align-items: center;
    margin: 0;
    font-weight: 400;
    cursor: pointer;
    gap: 12px;
    color: #cbd5e1;
    line-height: 1.4;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    position: relative;
}

.checkbox-label span {
    color: #cbd5e1;
}

/* Hide native checkbox */
.form-group.checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Toggle track — glassmorphism style */
.auth-toggle {
    display: inline-block;
    position: relative;
    width: 44px;
    min-width: 44px;
    height: 24px;
    border-radius: 24px;
    background: rgba(100, 100, 100, 0.25);
    border: 1.5px solid rgba(120, 120, 120, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    box-sizing: border-box;
}

/* Toggle thumb */
.auth-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Checked state — green glow */
input[type="checkbox"]:checked + .auth-toggle,
input[type="checkbox"]:checked ~ .auth-toggle {
    background: rgba(0, 217, 126, 0.35);
    border-color: rgba(0, 217, 126, 0.6);
    box-shadow: 0 0 8px rgba(0, 217, 126, 0.3);
}

input[type="checkbox"]:checked + .auth-toggle::after,
input[type="checkbox"]:checked ~ .auth-toggle::after {
    left: 22px;
    background: rgba(0, 217, 126, 0.9);
    box-shadow: 0 0 6px rgba(0, 217, 126, 0.3);
}

/* Fallback: CSS-only toggle for standard checkbox (no .auth-toggle span) */
.form-group.checkbox input[type="checkbox"]:not([style]) {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    opacity: 1;
    width: 44px;
    min-width: 44px;
    height: 24px;
    border-radius: 24px;
    background: rgba(100, 100, 100, 0.25);
    border: 1.5px solid rgba(120, 120, 120, 0.35);
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.form-group.checkbox input[type="checkbox"]:not([style])::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.form-group.checkbox input[type="checkbox"]:not([style]):checked {
    background: rgba(0, 217, 126, 0.35);
    border-color: rgba(0, 217, 126, 0.6);
    box-shadow: 0 0 8px rgba(0, 217, 126, 0.3);
}

.form-group.checkbox input[type="checkbox"]:not([style]):checked::after {
    left: 22px;
    background: rgba(0, 217, 126, 0.9);
    box-shadow: 0 0 6px rgba(0, 217, 126, 0.3);
}

.form-group.checkbox a,
.checkbox-label a {
    color: #60a5fa;
    text-decoration: none;
}

.form-group.checkbox a:hover,
.checkbox-label a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

/* Password Strength Indicator */
.password-strength {
    margin-top: 8px;
}

.strength-bar {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
}

.strength-fill {
    height: 100%;
    width: 0;
    transition: width 0.3s, background-color 0.3s;
}

.strength-bar.very-weak .strength-fill {
    width: 20%;
    background-color: #ef4444;
}

.strength-bar.weak .strength-fill {
    width: 40%;
    background-color: #f59e0b;
}

.strength-bar.fair .strength-fill {
    width: 60%;
    background-color: #eab308;
}

.strength-bar.good .strength-fill {
    width: 80%;
    background-color: #84cc16;
}

.strength-bar.strong .strength-fill {
    width: 100%;
    background-color: #10b981;
}

.strength-text {
    font-size: 13px;
    font-weight: 500;
}

.strength-bar.very-weak + .strength-text { color: #ef4444; }
.strength-bar.weak + .strength-text { color: #f59e0b; }
.strength-bar.fair + .strength-text { color: #eab308; }
.strength-bar.good + .strength-text { color: #84cc16; }
.strength-bar.strong + .strength-text { color: #10b981; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:active {
    transform: scale(0.98);
}

/* Shine sweep animation */
@keyframes auth-btn-shine {
    0% { left: -150%; }
    100% { left: 250%; }
}

.btn-primary {
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -150%;
    width: 40px;
    height: 400%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-25deg);
    animation: auth-btn-shine 3s infinite;
    pointer-events: none;
}

.btn-primary:hover {
    background: var(--primary, #00D97E);
    color: #ffffff;
    border-color: var(--primary, #00D97E);
    box-shadow: 0 4px 12px rgba(0, 217, 126, 0.5);
    transform: translateY(-2px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary:disabled {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    box-shadow: none;
}

.btn-primary:disabled::before {
    display: none;
}

/* Alerts */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Auth Links */
.auth-links {
    margin-top: 24px;
    text-align: center;
}

.auth-links p {
    margin: 8px 0;
    font-size: 14px;
    color: #94a3b8;
}

.auth-links a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
}

.auth-links a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

/* Social Login */
.social-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 20px auto;
    max-width: 100%;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.social-btn:hover {
    background: var(--primary, #00D97E);
    border-color: var(--primary, #00D97E);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 217, 126, 0.4);
}

.social-btn img.social-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.divider {
    position: relative;
    margin: 24px 0;
    color: #64748b;
    font-size: 14px;
    text-align: center;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: #334155;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.social-login .separator {
    position: relative;
    width: 100%;
    margin: 20px 0;
    color: #9ca3af;
    font-size: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-login .separator::before,
.social-login .separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #334155;
}

.social-login .separator::before {
    /* flex handles positioning */
}

.social-login .separator::after {
    /* flex handles positioning */
}

.btn-wechat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: #09b83e;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-wechat:hover {
    background: #078c31;
}

.btn-wechat img {
    width: 25px;
    height: 25px;
}

/* Responsive */
@media (max-width: 640px) {
    .auth-form-container {
        margin: 10px 12px;
        padding: 20px 16px;
    }
    
    .auth-form-container h2 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .auth-form-container > p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    /* Compact form groups */
    .form-group {
        margin-bottom: 12px;
    }

    .form-group label {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="password"] {
        min-height: 42px;
        padding: 8px 12px;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    .form-group small {
        font-size: 11px;
        margin-top: 2px;
    }

    /* Compact auth form spacing */
    .auth-form {
        margin-top: 16px;
    }

    /* Compact form options — stack vertically on mobile */
    .form-options {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
        margin: 10px 0 16px;
    }

    /* Submit button compact */
    .btn-primary {
        min-height: 44px;
        padding: 10px 20px;
        font-size: 15px;
    }

    /* Social login compact */
    .social-login {
        margin: 12px auto;
        gap: 8px;
    }

    /* Social buttons: 2 columns, by content width */
    .social-buttons {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px !important;
    }

    .btn-social {
        width: auto !important;
        flex: 0 0 auto !important;
        padding: 8px 14px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
    }

    .btn-social img {
        width: 20px;
        height: 20px;
    }

    /* Separator compact */
    .social-login .separator,
    .divider {
        margin: 10px 0;
        font-size: 12px;
    }

    /* Checkbox: single line, no word-break */
    .form-group.checkbox label {
        font-size: 13px;
        white-space: nowrap;
        overflow: visible;
    }

    /* Auth links compact */
    .auth-links {
        margin-top: 14px;
    }

    .auth-links p {
        font-size: 13px;
    }

    /* Auth page header: burger to the right */
    body.auth-page .site-header .header-content {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    body.auth-page .mobile-menu-toggle {
        order: 10 !important;
        margin-left: auto !important;
    }

    body.auth-page .header-auth {
        display: none !important;
    }

    /* Auth pages: no extra body padding — header is fixed at 56px, set in main block */
    body.auth-page {
        padding-top: 56px !important;
    }

    /* Password strength compact */
    .password-strength {
        margin-top: 4px;
    }
}

/* Chinese font support */
body.lang-zh .auth-form-container {
    font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}


/* Social Login Buttons */
.social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
    width: 100%;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-social:hover {
    background: var(--primary, #00D97E);
    border-color: var(--primary, #00D97E);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 217, 126, 0.4);
}

.btn-social img {
    width: 25px;
    height: 25px;
}

/* Provider-specific colors - removed, all use unified translucent style */
.btn-wechat,
.btn-qq,
.btn-yandex,
.btn-vk,
.btn-mailru,
.btn-telegram,
.btn-metamask,
.btn-google,
.btn-facebook,
.btn-discord {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-wechat:hover,
.btn-qq:hover,
.btn-yandex:hover,
.btn-vk:hover,
.btn-mailru:hover,
.btn-telegram:hover,
.btn-metamask:hover,
.btn-google:hover,
.btn-facebook:hover,
.btn-discord:hover {
    background: var(--primary, #00D97E);
    border-color: var(--primary, #00D97E);
    color: #ffffff;
}

/* MetaMask button uses same style as other social buttons */

/* Region-specific visibility */
.social-buttons.china-region,
.social-buttons.russia-region,
.social-buttons.international-region {
    display: none;
}

/* Responsive social buttons — already 2 columns by default */
@media (max-width: 640px) {
    .social-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .btn-social {
        width: 100%;
        justify-content: center;
    }

    /* Odd last button centered across both columns */
    .social-buttons .btn-social:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
        width: auto;
        min-width: 160px;
    }
}

/* Very narrow screens — 1 column */
@media (max-width: 360px) {
    .social-buttons {
        grid-template-columns: 1fr;
    }

    .social-buttons .btn-social:last-child:nth-child(odd) {
        grid-column: auto;
        justify-self: stretch;
        width: 100%;
    }
}

/* ============================================================================
   AUTH PAGE HEADER FIX
   ============================================================================ */

/* Hide auth buttons on auth pages to avoid duplication */
body.auth-page .header-auth {
    display: none !important;
}

/* Ensure header looks consistent on auth pages */
body.auth-page .site-header {
    background: rgba(26, 31, 46, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.auth-page .site-header .logo a {
    color: #f1f5f9;
}

body.auth-page .main-nav a {
    color: #cbd5e1;
}

body.auth-page .main-nav a:hover {
    color: #f1f5f9;
}

/* ============================================================================
   DARK THEME
   ============================================================================ */

/* Matrix Background for Auth Pages */
body.auth-page {
    position: relative;
    background: #0f172a;
    overflow-x: hidden;
}

/* Full-screen matrix canvas */
#auth-matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Dark overlay over matrix for readability */
body.auth-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 25, 0.75);
    z-index: 1;
    pointer-events: none;
}

body.auth-page .auth-form-container {
    position: relative;
    z-index: 2;
}

body.auth-page header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 100;
}

/* Compensate for fixed header on auth pages */
body.auth-page {
    padding-top: 56px !important;
}

body.auth-page footer {
    position: relative;
    z-index: 2;
}

@media (prefers-color-scheme: dark) {
    body {
        background: #0f172a;
        color: #e2e8f0;
    }
    
    .auth-form-container {
        /* inherits glassmorphism from main definition */
    }
    
    .auth-form-container h2 {
        color: #f1f5f9;
    }
    
    .auth-form-container > p {
        color: #94a3b8;
    }
    
    .form-group label {
        color: #cbd5e1;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="password"] {
        background: #0f172a;
        border-color: #334155;
        color: #e2e8f0;
    }
    
    .form-group input:focus {
        border-color: #3b82f6;
        background: #1e293b;
    }
    
    .form-group input::placeholder {
        color: #64748b;
    }
    
    .form-group small {
        color: #94a3b8;
    }
    
    .btn-primary {
        /* inherits translucent style from main definition */
    }
    
    .btn-social {
        /* inherits translucent style from main definition */
    }
    
    .btn-google {
        /* inherits translucent style */
    }
    
    .btn-google:hover {
        /* inherits translucent hover */
    }
    
    .btn-telegram {
        /* inherits translucent style */
    }
    
    .btn-telegram:hover {
        /* inherits translucent hover */
    }
    
    .btn-mailru {
        /* inherits translucent style */
    }
    
    .btn-mailru:hover {
        /* inherits translucent hover */
    }
    
    .alert-success {
        background: #064e3b;
        border-color: #065f46;
        color: #d1fae5;
    }
    
    .alert-error {
        background: #7f1d1d;
        border-color: #991b1b;
        color: #fecaca;
    }
    
    .password-strength-weak {
        background: #7f1d1d;
    }
    
    .password-strength-medium {
        background: #854d0e;
    }
    
    .password-strength-strong {
        background: #065f46;
    }
}

/* Password Input Wrapper - MUST be relative for absolute positioning */
.password-input-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.password-input-wrapper input {
    width: 100%;
    padding-right: 48px !important;
    height: 48px; /* Fixed height for consistent positioning */
}

/* Password Toggle Button - positioned relative to INPUT field center */
.password-toggle {
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    height: 48px; /* Match input height */
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    margin: 0;
    pointer-events: auto;
}

.password-toggle:hover {
    color: #cbd5e1;
}

.password-toggle:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 4px;
}

.password-toggle svg {
    width: 20px;
    height: 20px;
}

/* Password field styling */
.form-group.password-group {
    position: relative;
}

.password-group .password-input-wrapper {
    position: relative;
    display: block;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0 24px 0;
    gap: 16px;
}

.forgot-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.forgot-link:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Auth Footer */
.auth-footer {
    margin-top: 24px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

.auth-footer a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Auth Form Card */
.auth-form-card {
    background: rgba(148, 163, 184, 0.1);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.auth-form-card h1 {
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: 600;
    color: #f1f5f9;
    text-align: center;
}

.auth-subtitle {
    margin: 0 0 24px 0;
    color: #94a3b8;
    text-align: center;
    font-size: 14px;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Removed duplicate - already defined above */
