/* Contao 5 Formular */
.ce_form {
  max-width: 760px;
  padding: 2rem;
  background: #f7f7f7;
  border-radius: 14px;
}

.ce_form .formbody {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ce_form .widget {
  margin: 0;
}

.ce_form label {
  display: block;
  margin-bottom: .35rem;
  color: #333;
  font-weight: 500;
}

.ce_form label.mandatory,
.ce_form span.mandatory,
.ce_form .warning {
  color: #c40000;
}

.ce_form input.text,
.ce_form input.captcha,
.ce_form textarea,
.ce_form select {
  width: 100%;
  box-sizing: border-box;
  padding: .65rem .8rem;
  border: 1px solid #b8b8b8;
  border-radius: 6px;
  background: #fff;
  font: inherit;
}

.ce_form textarea {
  min-height: 130px;
  resize: vertical;
}

.ce_form input:focus,
.ce_form textarea:focus,
.ce_form select:focus {
  outline: none;
  border-color: #008c8c;
  box-shadow: 0 0 0 3px rgba(0, 140, 140, .15);
}

.ce_form .explanation {
  margin: .5rem 0;
  line-height: 1.5;
  color: #555;
}

.ce_form .small-kursiv {
  font-style: italic;
}

.ce_form h2 {
  margin: 1.5rem 0 .5rem;
  font-size: 1.35rem;
}

.ce_form .captcha_text {
  display: block;
  margin-top: .4rem;
  color: #555;
  font-size: .95rem;
}

.ce_form .widget-submit {
  margin-top: 1rem;
}

.ce_form button.submit {
  padding: .75rem 1.6rem;
  border: 0;
  border-radius: 6px;
  background: #008c8c;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.ce_form button.submit:hover {
  background: #006f6f;
}