/*
 * Ergaenzt WS-Forms eigenes CSS (bleibt unveraendert erhalten) um die drei
 * Dinge, die durch das Entfernen von WS-Forms eigenem JS wegfallen:
 * Fehlermeldungen sichtbar machen, Honeypot verstecken, Ladezustand am Button.
 */

.wsf-invalid-feedback--js-visible {
  display: block !important;
}

.wsf-hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.wsf-form-status {
  margin: 0.75rem 0;
  font-weight: 600;
}
.wsf-form-status--sending {
  color: #004cff;
}
.wsf-form-status--success {
  color: #1a7f37;
}
.wsf-form-status--error {
  color: #b3261e;
}

.wsf-form [type="submit"][aria-busy="true"] {
  opacity: 0.7;
  cursor: wait;
}
