/* 인증 페이지 */
.auth-page {
    min-height: 100vh;
    display: flex; align-items: stretch;
    background: linear-gradient(135deg, var(--bg) 0%, #EBF3FE 100%);
}
.auth-side {
    flex: 0 0 45%; display: flex; align-items: center; justify-content: center;
    background: var(--primary); overflow: hidden;
}
.auth-page .auth-card {
    flex: 1; display: flex; flex-direction: column; justify-content: center;
    padding: 48px 40px; max-width: none;
}
.auth-card {
    width: 100%; max-width: 440px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    box-shadow: var(--shadow-lg);
}
.auth-header { text-align: center; margin-bottom: 36px; }
.auth-logo {
    font-size: 24px; font-weight: 800;
    color: var(--primary);
    text-decoration: none; letter-spacing: -0.03em;
}
.auth-header h1 {
    font-size: 28px; font-weight: 700;
    margin: 20px 0 8px; letter-spacing: -0.02em;
}
.auth-header p {
    font-size: 15px; color: var(--text-light);
}
.auth-footer {
    text-align: center; margin-top: 28px;
    font-size: 14px; color: var(--text-light);
}
.auth-footer a {
    color: var(--primary); font-weight: 600;
}
.footer-minimal {
    text-align: center; padding: 24px;
    font-size: 13px; color: var(--text-muted);
}

@media (max-width: 480px) {
    .auth-card { padding: 32px 24px; }
}
