/**
 * AgentExit - Auth Pages CSS
 */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-h) + 40px) 24px 80px;
}

.auth-container {
    width: 100%;
    max-width: 440px;
}

.auth-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
}

.auth-card--center {
    text-align: center;
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.auth-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.auth-errors,
.auth-success {
    margin-bottom: 20px;
}

.auth-links {
    text-align: center;
    margin-top: 20px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.auth-links a {
    font-weight: 600;
}

.auth-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.auth-icon {
    margin: 0 auto 20px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-icon .lucide-icon {
    width: 32px;
    height: 32px;
}

.auth-icon--success {
    background: var(--accent-green-light);
    color: var(--accent-green);
}

.auth-icon--error {
    background: var(--accent-red-light);
    color: var(--accent-red);
}

.form-radio-group {
    display: flex;
    gap: 24px;
}

.form-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.form-checkbox-label a {
    font-weight: 600;
}

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