/* ============== Formular-Wrapper ============== */
.nf-form {
  max-width: 500px;
  margin: 2em auto;
  padding: 1em;
  background-color: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* ============== Struktur ============== */
.nf-form-content {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

/* ============== Field Container ============== */
.nf-field-container {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.nf-field {
  display: flex;
  flex-direction: column;
}

.field-wrap {
  padding: 1em;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f9f9f9;
}

/* ============== Label ============== */
.nf-field-label label {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.5em;
  display: block;
}

.ninja-forms-req-symbol {
  color: red;
  margin-left: 0.25em;
}

/* ============== Input-Feld ============== */
.nf-field-element input.ninja-forms-field {
  width: 100%;
  padding: 0.75em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.nf-field-element input.ninja-forms-field:focus {
  border-color: #6cbc89;
  outline: none;
}

/* ============== WP Block Button Style ============== */
.wp-block-button {
  text-align: center;
}

.wp-block-button__link {
  display: inline-block;
  padding: 0.75em 1.5em;
  text-decoration: none;
  border-radius: 4px;
  background-color: #6cbc89;
  color: #fff;
  font-weight: bold;
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
}

.wp-block-button__link:hover,
.wp-block-button__link:focus {
  background-color: #5da97b;
  text-decoration: none;
  color: #fff;
}
