/* ===== 认证页面样式（登录/注册） ===== */
/* 基础auth样式已在style.css中定义，此处仅做补充 */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
}
.auth-container {
    width: 100%;
    max-width: 440px;
    padding: 20px;
}
.auth-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
}
.auth-header {
    text-align: center;
    margin-bottom: 32px;
}
.auth-header .logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 16px;
}
.auth-header h1 {
    font-size: 24px;
    margin-bottom: 8px;
}
.auth-header p {
    font-size: 14px;
    color: var(--text-secondary);
}
.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}
.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}
