/* Route-specific styles extracted from landing.css: auth */

/* ============================================
   REGISTRATION PAGE - CINEMATIC STYLE
   ============================================ */

.register-cinematic {
    min-height: 100vh;
    background-color: #020408;
    color: #e2e8f0;
}

.register-layout {
    display: flex;
    min-height: calc(100vh - 80px); /* Account for navbar */
}

/* Left Column - Form */
.register-form-column {
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #020408;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .register-form-column {
        width: 50%;
        padding: 3rem;
    }
}

@media (min-width: 1280px) {
    .register-form-column {
        width: 41.666%;
        padding: 3rem 4rem;
    }
}

.register-form-wrapper {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Step Header */
.register-step-header {
    margin-bottom: 2rem;
}

.register-step-label {
    display: block;
    color: #06b6d4;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.register-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.register-subtitle {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

.register-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #64748b;
    font-size: 12px;
    text-decoration: none !important;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.register-back-link:hover {
    color: #fff;
}

/* Alerts */
.register-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    font-size: 14px;
}

.register-alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.register-alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Form */
.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.register-field {
    display: flex;
    flex-direction: column;
}

.register-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.register-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.register-label-hint {
    font-size: 10px;
    color: #475569;
    cursor: help;
}

/* .register-input extends .cinematic-input */
.register-input {
    background-color: #0b1221;
    border: 1px solid #1e293b;
    color: #fff;
    padding: 0.75rem 1rem;
    font-size: 14px;
    border-radius: 2px;
    transition: all 0.3s ease;
    width: 100%;
}

.register-input:focus {
    border-color: #06b6d4;
    box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.3);
    outline: none;
    background-color: #0f172a;
}

.register-input::placeholder {
    color: #475569;
}

.register-input-icon {
    position: relative;
}

.register-input-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 14px;
}

.register-input-with-icon {
    padding-left: 2.5rem;
}

.register-field-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 0.25rem;
}

.register-field-note {
    color: #475569;
    font-size: 11px;
    margin-top: 0.25rem;
}

/* Password Meter */
.register-password-meter {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.5rem;
    height: 4px;
}

.register-password-bar {
    flex: 1;
    background: #1e293b;
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.3s;
}

.register-password-bar > div {
    height: 100%;
    width: 0;
    transition: width 0.3s, background-color 0.3s;
}

/* Consents */
.register-consents {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.register-consent-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.register-consent-item input[type="checkbox"] {
    margin-top: 2px;
    accent-color: #06b6d4;
}

.register-consent-item label {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

.register-consent-item a {
    color: #94a3b8;
    text-decoration: underline;
    text-decoration-color: #475569;
}

.register-consent-item a:hover {
    color: #fff;
}

.register-admin-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 12px;
    color: #64748b;
    margin: 0.5rem 0;
}

.register-admin-note i {
    color: #06b6d4;
}

/* Primary Button */
.register-btn-primary {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: #06b6d4;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
    transition: all 0.2s;
}

.register-btn-primary:hover {
    background: #22d3ee;
    transform: translateY(-1px);
}

/* Footer Link */
.register-footer-link {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.register-footer-link p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.register-footer-link a {
    color: #06b6d4;
    text-decoration: none !important;
    transition: color 0.2s;
}

.register-footer-link a:hover {
    color: #fff;
}

/* Form Footer */
.register-form-footer {
    display: flex;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #475569;
    margin-top: 2rem;
}

.register-form-footer span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Right Column - Visual */
.register-visual-column {
    display: none;
    position: relative;
    overflow: hidden;
    background: #050b14;
}

@media (min-width: 1024px) {
    .register-visual-column {
        display: block;
        width: 50%;
    }
}

@media (min-width: 1280px) {
    .register-visual-column {
        width: 58.333%;
    }
}

.register-visual-bg {
    position: absolute;
    inset: 0;
}

.register-visual-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(1) contrast(1.25);
}

.register-visual-grid {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.register-visual-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #020408, transparent, transparent);
}

.register-visual-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4rem;
    z-index: 20;
}

/* Testimonial */
.register-testimonial {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 2px;
    max-width: 500px;
    transition: transform 0.5s;
}

.register-testimonial:hover {
    transform: translateY(-8px);
}

.register-testimonial-icon {
    color: #06b6d4;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.register-testimonial-text {
    font-size: 1.125rem;
    color: #fff;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.register-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.register-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.register-testimonial-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.register-testimonial-role {
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
    color: #94a3b8;
}

/* Trust Logos */
.register-trust-logos {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    opacity: 0.5;
    filter: grayscale(1);
}

.register-trust-item {
    height: 24px;
    width: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* Navbar positioning for register page */
.register-cinematic .navbar-cinematic {
    position: relative;
}

/* Footer visible on register page */
.register-cinematic .footer-new {
    display: block;
}

/* Step 2 specific styles */
.register-step-animate {
    animation: registerSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes registerSlideUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.register-label-muted {
    color: #64748b !important;
}

.register-label-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0.375rem;
}

.register-label-row .register-label {
    margin-bottom: 0;
}

.register-label-row .register-label-hint {
    font-size: 9px;
    color: #64748b;
}

.register-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0.5rem 0;
}

.register-field-readonly {
    opacity: 0.7;
    transition: opacity 0.2s;
}

.register-field-readonly:hover {
    opacity: 1;
}

.register-input-disabled {
    background-color: #050b14 !important;
    color: #64748b !important;
    cursor: not-allowed;
    border-style: dashed;
}

.register-password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.register-password-toggle:hover {
    color: #fff;
}

.register-password-strength-text {
    font-size: 9px;
    color: #64748b;
    text-align: right;
    margin-top: 0.25rem;
}

/* Custom checkbox */
.register-checkbox {
    appearance: none;
    -webkit-appearance: none;
    background-color: #0b1221;
    border: 1px solid #1e293b;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    display: inline-grid;
    place-content: center;
    margin-top: 3px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.2s;
}

.register-checkbox::before {
    content: "";
    width: 10px;
    height: 10px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #06b6d4;
    transform-origin: center;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.register-checkbox:checked::before {
    transform: scale(1);
}

.register-checkbox:checked {
    border-color: #06b6d4;
}

.register-consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.register-consent-checkbox span {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.6;
    transition: color 0.2s;
}

.register-consent-checkbox:hover span {
    color: #cbd5e1;
}

.register-consent-checkbox a {
    color: #06b6d4;
    text-decoration: none !important;
}

.register-consent-checkbox a:hover {
    text-decoration: underline !important;
}

.register-btn-submit {
    margin-top: 1.5rem;
}

.register-btn-submit i {
    transition: transform 0.2s;
}

.register-btn-submit:hover i {
    transform: translateX(4px);
}

/* Visual column - center content */
.register-visual-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    z-index: 20;
}

.register-visual-badge {
    margin-bottom: 1.5rem;
}

.register-visual-badge span {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(6, 182, 212, 0.3);
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.register-visual-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.register-visual-title span {
    color: #64748b;
}

.register-visual-desc {
    font-size: 14px;
    color: #94a3b8;
    max-width: 400px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Feature list */
.register-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.register-feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 14px;
    color: #cbd5e1;
}

.register-feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 12px;
    flex-shrink: 0;
}

/* Technical bar */
.register-tech-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 30;
}

.register-tech-info {
    display: flex;
    gap: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #64748b;
}

.register-tech-status {
    color: #10b981;
}

.register-tech-dots {
    display: flex;
    gap: 0.5rem;
}

.register-tech-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #334155;
}

.register-tech-dot-active {
    background: #06b6d4;
    animation: techPulse 2s infinite;
}

@keyframes techPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Responsive */
@media (max-width: 640px) {
    .register-field-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LOGIN PAGE CINEMATIC STYLES
   ============================================ */

.login-cinematic {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #020408;
    font-family: 'Inter', sans-serif;
}

.login-wrapper {
    display: flex;
    min-height: calc(100vh - 80px); /* Account for navbar - same as register */
}

/* Left Column - Form (IDENTICAL to register styles) */
.login-form-column {
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #020408;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .login-form-column {
        width: 50%;
        padding: 3rem;
    }
}

@media (min-width: 1280px) {
    .login-form-column {
        width: 41.666%;
        padding: 3rem 4rem;
    }
}

.login-form-container {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form-header {
    margin-bottom: 2rem;
}

.login-mono-label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #06b6d4;
    margin-bottom: 0.5rem;
}

.login-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    font-size: 14px;
    color: #94a3b8;
}

/* Alerts */
.login-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 2px;
    font-size: 12px;
    margin-bottom: 1.5rem;
}

.login-alert i {
    margin-top: 2px;
    flex-shrink: 0;
}

.login-alert-error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #f87171;
}

.login-alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.5);
    color: #34d399;
}

/* Form */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.login-field {
    display: flex;
    flex-direction: column;
}

.login-label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 0.375rem;
}

.login-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.375rem;
}

.login-forgot-link {
    font-size: 10px;
    color: #06b6d4;
    transition: color 0.2s;
}

.login-forgot-link:hover {
    color: #fff;
}

.login-input-wrapper {
    position: relative;
}

.login-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 12px;
}

.login-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background-color: #0b1221;
    border: 1px solid #1e293b;
    border-radius: 2px;
    color: #fff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.login-input::placeholder {
    color: #475569;
}

.login-input:focus {
    outline: none;
    border-color: #06b6d4;
    box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.3);
    background-color: #0f172a;
}

/* Remember Me */
.login-remember {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background-color: #0b1221;
    border: 1px solid #1e293b;
    border-radius: 2px;
    cursor: pointer;
    display: inline-grid;
    place-content: center;
    flex-shrink: 0;
}

.login-checkbox::before {
    content: "";
    width: 10px;
    height: 10px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #06b6d4;
    transform-origin: center;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.login-checkbox:checked::before {
    transform: scale(1);
}

.login-remember-label {
    font-size: 12px;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s;
    user-select: none;
}

.login-remember-label:hover {
    color: #fff;
}

/* Submit Button */
.login-submit-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #06b6d4;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
    margin-top: 0.5rem;
}

.login-submit-btn:hover {
    background-color: #22d3ee;
}

/* Register Link */
.login-register-link {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.login-register-link p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.login-register-link a {
    color: #06b6d4;
    font-weight: 700;
    transition: color 0.2s;
}

.login-register-link a:hover {
    color: #fff;
}

/* Right Column - Visual (matching register styles) */
.login-visual-column {
    display: none;
    position: relative;
    overflow: hidden;
    background-color: #050b14;
}

@media (min-width: 1024px) {
    .login-visual-column {
        display: block;
        width: 50%;
    }
}

@media (min-width: 1280px) {
    .login-visual-column {
        width: 58.333%;
    }
}

.login-visual-bg {
    position: absolute;
    inset: 0;
}

.login-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: grayscale(100%) contrast(1.25);
}

.login-visual-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.login-visual-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #020408, rgba(2, 4, 8, 0.4), transparent);
}

/* Status Widget */
.login-status-widget {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 2px;
    max-width: 280px;
}

.login-status-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.login-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
    animation: pulse 2s infinite;
}

.login-status-header span {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.login-status-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.login-status-row {
    display: flex;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #94a3b8;
}

.login-status-value {
    color: #fff;
}

.login-status-active {
    color: #10b981;
}

/* ============================================
   TWO-FACTOR AUTH PAGE CINEMATIC STYLES
   ============================================ */

/* DEV Alert */
.twofa-dev-alert {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.5);
    border-radius: 2px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.twofa-dev-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #f59e0b;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.twofa-dev-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3em;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.twofa-dev-expires {
    font-size: 10px;
    color: #94a3b8;
    margin-top: 0.5rem;
}

/* 2FA Code Input - extends login-input */
.twofa-code-input {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.3em !important;
    text-align: center !important;
    padding-left: 2.5rem !important;
}

/* Hint text */
.login-hint {
    font-size: 11px;
    color: #64748b;
    margin-top: 0.5rem;
}

/* Action links for 2FA */
.login-action-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: transparent;
    border: none;
    color: #06b6d4;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
}

.login-action-link:hover {
    color: #fff;
}

/* 2FA Actions layout */
.twofa-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.twofa-resend-form {
    display: contents;
}

/* Security Widget */
.twofa-security-widget {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 2px;
    max-width: 320px;
}

.twofa-widget-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.twofa-shield-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.05));
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06b6d4;
    font-size: 18px;
}

.twofa-widget-header span {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.twofa-widget-content {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.twofa-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 12px;
    color: #94a3b8;
}

.twofa-feature i {
    color: #10b981;
    font-size: 14px;
}

.twofa-widget-footer {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 11px;
    color: #64748b;
}

.twofa-widget-footer i {
    color: #f59e0b;
    margin-top: 1px;
    flex-shrink: 0;
}

/* ============================================
   LOGOUT PAGE CINEMATIC STYLES
   ============================================ */

.logout-cinematic {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #020408;
    font-family: 'Inter', sans-serif;
}

.logout-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.logout-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
    pointer-events: none;
}

.logout-card {
    position: relative;
    z-index: 10;
    background-color: #0b1221;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 2px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 28rem;
    width: 100%;
}

.logout-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #10b981;
    font-size: 1.875rem;
}

.logout-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.logout-text {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.logout-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.logout-btn-primary {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: #fff;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 2px;
    text-align: center;
    transition: all 0.2s;
}

.logout-btn-primary:hover {
    background-color: #e2e8f0;
}

.logout-btn-secondary {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: transparent;
    color: #94a3b8;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    text-align: center;
    transition: all 0.2s;
}

.logout-btn-secondary:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

/* Feedback Section */
.logout-feedback {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.logout-feedback p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.logout-feedback-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.logout-feedback-btn {
    font-size: 1.125rem;
    color: #475569;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.logout-feedback-btn:hover {
    transform: scale(1.1);
}

.logout-feedback-btn:nth-child(1):hover {
    color: #06b6d4;
}

.logout-feedback-btn:nth-child(2):hover {
    color: #fff;
}

.logout-feedback-btn:nth-child(3):hover {
    color: #f87171;
}

.logout-copyright {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #475569;
}


