.fsb-signup-form {
  width: 100%;
  box-sizing: border-box;
}

.fsb-signup-form__box {
  display: flex;
  flex-direction: column;
  gap: 14px;

  width: 100%;
  box-sizing: border-box;
}

.fsb-signup-form__field input {
  width: 100%;
  height: 48px;

  border: 1px solid #D1D5DB;
  border-radius: 10px;

  padding: 0 14px;

  font-size: 16px;
  font-family: inherit;

  background: #FFFFFF;
  color: #111827;

  box-sizing: border-box;
}

.fsb-signup-form__field input::placeholder {
  color: #6B7280;
}

.fsb-signup-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  font-size: 14px;
  line-height: 1.5;

  color: #374151;

  cursor: default;
}

.fsb-signup-form__privacy input {
  margin-top: 2px;
}

.fsb-signup-form__button {
  max-width: 100%;
  min-height: 48px;

  border: none;
  border-radius: 10px;

  padding: 12px 18px;

  background: #2563EB;
  color: #FFFFFF;

  font-size: 16px;
  font-weight: 600;
  font-family: inherit;

  cursor: pointer;
  pointer-events: auto;

  opacity: 1;
}

.fsb-signup-form__button:disabled {
  opacity: 1;
}
/* Nur im Editor: Formularfelder sollen nicht anklickbar sein,
   damit das Widget selbst auswählbar bleibt */
.fsb-canvas .fsb-signup-form input,
.fsb-canvas .fsb-signup-form button,
.fsb-canvas .fsb-signup-form label {
  pointer-events: none;
}