/* ═══ Auth Pages Styles ═══ */

.auth-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    overflow-x: visible;
}

.auth-logo {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--warm-brown);
    text-decoration: none;
    letter-spacing: -0.5px;
    margin-bottom: 32px;
    transition: var(--transition);
}
.auth-logo span { color: var(--rose); }
.auth-logo:hover { color: var(--burgundy); }

.auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--warm-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 40px 36px;
    border: 1px solid var(--border);
}
.auth-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--warm-brown);
    text-align: center;
    margin-bottom: 8px;
}
.auth-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 28px;
    font-weight: 300;
}

.auth-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--warm-white);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}
.auth-google:hover {
    border-color: var(--rose);
    background: var(--blush-light);
}
.auth-google svg { width: 20px; height: 20px; flex-shrink: 0; }

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--text-light);
    font-size: 12px;
    font-weight: 500;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-card .form-group {
    margin-bottom: 18px;
}

.form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
}
.form-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: var(--rose-deep);
    cursor: pointer;
}

.auth-submit {
    width: 100%;
    padding: 13px 20px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--warm-brown);
    color: var(--warm-white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.auth-submit:hover { background: var(--burgundy); }

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
}
.auth-footer a {
    color: var(--rose-deep);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}
.auth-footer a:hover { color: var(--burgundy); }

@media (max-width: 480px) {
    .auth-card { padding: 28px 20px; }
    .auth-title { font-size: 24px; }
}
