/* Formulaire « Right to Erasure Request » — partagé par les marques Altheris.
   S'appuie sur .contact-form de chaque marque pour les champs texte et n'ajoute
   que ce qui lui est propre : fieldsets, libellés, cases, encarts. Thémé par les
   variables CSS de la marque. */

.erasure-form { gap: 0; }

.erasure-form fieldset {
  margin: 0 0 40px;
  padding: 0;
  border: 0;
  border-top: 1px solid var(--line-soft, rgba(255, 255, 255, 0.05));
  padding-top: 28px;
}

.erasure-form legend {
  padding: 0;
  font-family: var(--font-sans, "Inter", system-ui, sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2, #6b7585);
}

.erasure-form label {
  display: block;
  margin: 20px 0 8px;
  font-size: 13px;
  color: var(--ink-2, #d7dbe2);
}

.erasure-form input[type="text"],
.erasure-form input[type="email"],
.erasure-form input[type="date"],
.erasure-form textarea { width: 100%; }

.erasure-form textarea { min-height: 120px; }

/* Cases à cocher et boutons radio : la puce reste alignée sur la première
   ligne d'un libellé qui fait souvent trois lignes. */
.erasure-form .ef-choice {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 14px 0;
  cursor: pointer;
}
.erasure-form .ef-choice input {
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  accent-color: var(--accent, #4f86be);
}
.erasure-form .ef-choice span { font-size: 14px; line-height: 1.6; }

.erasure-form .ef-note {
  margin: 16px 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted, #9aa3b2);
}
.erasure-form ul.ef-note { padding-left: 20px; }
.erasure-form ul.ef-note li { margin-bottom: 8px; }
.erasure-form .ef-note-strong { color: var(--ink-2, #d7dbe2); }
.erasure-form .ef-note a { color: var(--accent-2, #8fb4d8); }

.erasure-form button { margin-top: 8px; }

/* Bandeaux de retour après soumission. */
.ef-flash {
  margin: 0 0 32px;
  padding: 20px 24px;
  border-radius: var(--r-md, 10px);
  border: 1px solid var(--line, rgba(255, 255, 255, 0.08));
  background: var(--panel, #0e131c);
  font-size: 14px;
  line-height: 1.65;
}
.ef-flash p { margin: 0 0 10px; }
.ef-flash p:last-child { margin-bottom: 0; }
.ef-flash ul { margin: 8px 0 0; padding-left: 20px; }
.ef-flash a { color: var(--accent-2, #8fb4d8); }
.ef-flash-ok { border-color: var(--accent-line, rgba(79, 134, 190, 0.34)); }
.ef-flash-error { border-color: rgba(214, 96, 96, 0.5); }
