/**
 * Login Page Specific Styles
 * Requires: theme.css (global styles)
 * Matches register page design
 */

/* ============================================ */
/* AUTH PAGE LAYOUT */
/* ============================================ */
body.auth-page {
    background: var(--brand-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
}

/* ============================================ */
/* LOGIN CONTAINER */
/* ============================================ */
.login-container {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-xl);
    width: 100%;
    max-width: 420px;
    animation: slideUp 0.4s ease-out;
}

/* ============================================ */
/* LOGIN HEADER */
/* ============================================ */
.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

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

/* ============================================ */
/* LOGIN FOOTER */
/* ============================================ */
.login-footer {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.login-footer p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 0;
}

.login-footer a {
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.login-footer a:hover {
    color: var(--brand-secondary);
    text-decoration: underline;
}

/* ============================================ */
/* MOBILE RESPONSIVE */
/* ============================================ */
@media (max-width: 480px) {
    .login-container {
        padding: var(--spacing-lg);
    }
    
    .login-header h1 {
        font-size: 28px;
    }
}
