/* ================= LOGIN STYLES ================= */
#loginView { 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: linear-gradient(145deg, var(--secondary) 0%, #1e293b 100%); 
    padding: 1rem; 
    position: fixed; 
    inset: 0; 
    z-index: 5000; 
}
.login-card { 
    background: var(--bg-surface); 
    padding: 2.5rem 2rem; 
    border-radius: var(--radius-xl); 
    width: 100%; 
    max-width: 420px; 
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); 
    animation: fadeInUp 0.6s ease-out; 
}
.login-logo { 
    width: 72px; 
    height: 72px; 
    background: var(--primary-light); 
    color: var(--primary); 
    border-radius: 24px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 2.25rem; 
    margin: 0 auto 1.5rem; 
}