/* ─── Auth Pages ────────────────────────────────────────── */
.body-auth {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
}
.auth-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}
.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    margin-bottom: 32px;
}
.auth-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.auth-card h1 {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
}
.auth-card .auth-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
}
.auth-card .form-group {
    margin-bottom: 16px;
}
.auth-card .form-input {
    padding: 12px 14px;
}
.auth-card .btn {
    margin-top: 8px;
}
.auth-links {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    font-size: 13px;
}
.auth-links a {
    color: var(--text-light);
}
.auth-links a:hover {
    color: var(--primary);
}
.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
}
.auth-footer a {
    color: var(--text-light);
}
.auth-footer a:hover {
    color: var(--primary);
}
.auth-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}
.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}
.auth-divider span {
    background: var(--bg-white);
    padding: 0 12px;
    position: relative;
    font-size: 13px;
    color: var(--text-lighter);
}
