.pelvic-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  font-family: inherit;
  max-width: 32em;
}

.pcf-row {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}

.pcf-row .pcf-field {
  flex: 1 1 12em;
}

.pcf-field label,
.pcf-honeypot label {
  display: block;
  font-size: 0.85em;
  margin-bottom: 0.4em;
}

.pcf-required {
  opacity: 0.6;
  font-size: 0.9em;
  margin-left: 0.25em;
}

.pcf-field input,
.pcf-field textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 1em;
  padding: 0.7em 0.8em;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  background: transparent;
  color: inherit;
}

.pcf-field input:focus,
.pcf-field textarea:focus {
  outline: none;
  border-color: currentColor;
}

.pcf-field textarea {
  resize: vertical;
  min-height: 6em;
}

.pcf-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.pcf-submit {
  align-self: flex-start;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.pcf-submit[disabled] {
  opacity: 0.6;
  cursor: default;
}

.pcf-status {
  font-size: 0.95em;
}

.pcf-status[data-state="error"] {
  color: #b3261e;
}

.pcf-status[data-state="success"] {
  color: inherit;
}
