/* Formbody bleibt vertikale Spalte */
.ce_form .formbody{
  display: flex !important;
  flex-direction: column !important;
  gap: 12px;
  align-items: stretch; /* WICHTIG: nicht center */
}

/* Widget-Container untereinander + zentriert */
.ce_form .formbody .widget{
  width: 100%;
  max-width: 300px;
  margin: 0 auto;       /* zentriert jedes Feld */
  float: none !important;
  display: block !important;
}

/* Eingabefelder volle Widget-Breite */
.ce_form .formbody input:not([type="checkbox"]):not([type="radio"]),
.ce_form .formbody select,
.ce_form .formbody textarea{
  width: 100% !important;
  box-sizing: border-box;
  display: block;
}

/* Labels linksbündig */
.ce_form .formbody label{
  text-align: left;
  display: block;
  margin-bottom: 6px;
}
/* Formular-Überschrift (h3) zentrieren */
.ce_form h3{
  text-align: center;
  max-width: 300px;
  margin: 0 auto 20px auto;
}