/* Klon-Nachrüstung: Kontaktformular — Einwilligung, Statusmeldung, Honigtopf.
 * Schrift und Farben kommen aus den Wix-Variablen der Seite, damit sich die neuen
 * Teile nicht vom Rest abheben. */

/* Honigtopf: für Menschen unsichtbar, für Programme ein normales Feld */
.klon-honig {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Einwilligung: eigene Zeile über die volle Breite */
.klon-einwilligung {
  grid-column: 1 / -1;
  width: 100%;
}
.klon-einwilligung__label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  line-height: 1.5;
}
.klon-einwilligung__label input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: currentColor;
  cursor: pointer;
}
.klon-einwilligung__label a {
  color: inherit;
  text-decoration: underline;
}
.klon-einwilligung[data-error="true"] .klon-einwilligung__label {
  color: rgb(var(--wix-forms-formInputErrorColor, 223, 49, 49));
}

/* Fehlertext unter einem Feld — dieselbe Rotfärbung wie Wix */
.klon-feldfehler {
  color: rgb(var(--wix-forms-formInputErrorColor, 223, 49, 49));
  font-size: 13px;
  line-height: 1.4;
  margin-top: 6px;
}
.klon-feldfehler:empty {
  display: none;
}

/* Rückmeldung nach dem Absenden */
.klon-status {
  margin-top: 8px;
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.5;
  border: 1px solid currentColor;
  outline: none;
}
.klon-status[data-art="ok"] {
  color: #1d5c2c;
  background: #eef8f0;
  border-color: #8fcb9b;
}
.klon-status[data-art="fehler"] {
  color: #9b1c1c;
  background: #fdf1f1;
  border-color: #e3a5a5;
}

/* Gesperrter Knopf während des Sendens */
form[data-klon-formular] button[type="submit"][disabled] {
  opacity: 0.6;
  cursor: wait;
}
