/* Auth Page Specific Styles */
.auth-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top right, #1e293b 0%, #0f172a 100%);
    padding: 1rem;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.icon-primary {
    color: var(--primary);
    width: 40px;
    height: 40px;
}

.error-msg {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    text-align: center;
}
.logo-container { margin-bottom: 1.5rem; display: flex; justify-content: center; }
.auth-logo { height: 80px; filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.4)); }
