/* Data Removal Form — dark theme */

*{ margin:0; padding:0; box-sizing:border-box; }

:root {
    --accent: #7c3aed;
    --accent-hover: #6d28d9;
    --error: #f87171;
    --success: #34d399;
    --warning: #fbbf24;
    --bg: #0a0a0b;
    --bg-card: #111113;
    --bg-input: #18181b;
    --border: rgba(255,255,255,0.08);
    --border-focus: rgba(94,106,210,0.6);
    --text: #f5f5f7;
    --text-muted: #a1a1a6;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
}

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

/* Topbar */
.form-topbar { margin-bottom: 1.5rem; }
.brand-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem; font-weight: 600;
    color: var(--accent); text-decoration: none;
}
.brand-link:hover { text-decoration: underline; }

.form-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    width: 100%;
}

.form-header { margin-bottom: 1.5rem; }
.form-header h1 {
    font-size: 1.625rem; font-weight: 700;
    color: var(--text); margin-bottom: 0.75rem;
}
.form-description { color: var(--text-muted); font-size: 0.9rem; }
.form-description a { color: var(--accent); text-decoration: none; }
.form-description a:hover { text-decoration: underline; }

.form-section {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
}
.form-section h2 {
    font-size: 1rem; font-weight: 600;
    color: var(--text); margin-bottom: 1.25rem;
}

.form-group { margin-bottom: 1.1rem; }

label {
    display: block; margin-bottom: 0.45rem;
    font-size: 0.875rem; font-weight: 500;
    color: var(--text-muted);
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
select {
    width: 100%;
    padding: 0.65rem 0.875rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    color: var(--text);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.15s;
}
input:focus, select:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(94,106,210,0.1);
}
select option { background: #1a1a1d; }

.helper-text { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem; display: block; }

.checkbox-group { display: flex; align-items: flex-start; gap: 0.75rem; }
.checkbox-group input[type="checkbox"] { margin-top: 3px; accent-color: var(--accent); }
.checkbox-group label { font-size: 0.875rem; color: var(--text-muted); }

.captcha-container { margin: 1rem 0; display: flex; justify-content: flex-start; }
.verification-section { margin: 1rem 0; }

.status-indicator {
    margin-top: 0.75rem; padding: 0.5rem 0.875rem;
    border-radius: 0.375rem; font-size: 0.875rem;
    max-width: 380px; transition: all 0.2s;
}
.status-indicator.success { background: rgba(52,211,153,0.1); color: var(--success); border: 1px solid rgba(52,211,153,0.2); }
.status-indicator.error   { background: rgba(248,113,113,0.1); color: var(--error);   border: 1px solid rgba(248,113,113,0.2); }
.status-indicator.warning { background: rgba(251,191,36,0.1);  color: var(--warning); border: 1px solid rgba(251,191,36,0.2);  }
.status-indicator.info    { background: rgba(255,255,255,0.04); color: var(--text-muted); border: 1px solid var(--border); }

#submitBtn {
    position: relative;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: var(--accent); color: #fff;
    border: none; border-radius: 0.375rem;
    font-size: 0.95rem; font-weight: 500; font-family: inherit;
    cursor: pointer; margin-top: 1rem;
    transition: background 0.15s;
}
#submitBtn:hover:not(:disabled) { background: var(--accent-hover); }
#submitBtn:disabled { opacity: 0.5; cursor: not-allowed; }
#submitBtn.loading { background: var(--accent-hover); }

@keyframes fadeDots { 0%,100%{ opacity:0.2; } 50%{ opacity:1; } }
#submitBtn.loading::after {
    content: "● ● ●";
    font-size: 0.8em; letter-spacing: 2px;
    animation: fadeDots 1.5s infinite;
}

input:invalid, select:invalid { border-color: rgba(248,113,113,0.4); }
.error-message { color: var(--error); font-size: 0.8rem; margin-top: 0.25rem; }

.privacy-notice {
    margin-top: 1.5rem; padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    font-size: 0.8rem; color: var(--text-muted); text-align: center;
}
.privacy-notice a { color: var(--accent); text-decoration: none; }
.privacy-notice a:hover { text-decoration: underline; }

.legal-notes { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.legal-notes p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; }

.security-indicator {
    display: flex; align-items: center; gap: 0.5rem;
    color: var(--success); font-size: 0.875rem; margin-bottom: 1rem;
}
