/* ═══════════════════════════════════════════════════════
   🔐 AUTH PAGES
   ═══════════════════════════════════════════════════════ */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-deep) 0%, #0d2137 100%);
}

.auth-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.auth-header h1 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.auth-form {
    margin-bottom: 20px;
}

.btn-block {
    width: 100%;
    padding: 12px;
    font-size: 14px;
}

.error-message {
    padding: 10px 15px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--border-radius);
    color: var(--danger);
    font-size: 13px;
    margin-bottom: 15px;
}

.auth-footer {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}
/* ═══════════════════════════════════════════════════════
   🌌 COSMIC STYLE - Transparency + Depth
   ═══════════════════════════════════════════════════════ */
.auth-page {
    background: transparent !important;
}

.auth-container {
    position: relative;
    z-index: 1;
}

.auth-card {
    background: linear-gradient(180deg, 
        rgba(15, 30, 50, 0.55) 0%, 
        rgba(10, 25, 45, 0.65) 50%,
        rgba(8, 20, 38, 0.7) 100%) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 182, 212, 0.25) !important;
    box-shadow: 
        0 0 30px rgba(6, 182, 212, 0.15),
        0 0 60px rgba(6, 182, 212, 0.08),
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255,255,255,0.05) !important;
}
