.qc-form {
  display: grid;
  gap: 16px;
  margin: 0;
}
.qc-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #22302D;
}
.qc-form .studio-field {
  display: block;
  width: 100%;
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid rgba(34, 48, 45, 0.18);
  border-radius: 12px;
  background: #fff;
  color: #22302D;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
  color-scheme: light;
}
.qc-form textarea.studio-field {
  min-height: 140px;
  resize: vertical;
}
.qc-form .studio-field:focus {
  outline: 2px solid #0C7F79;
  outline-offset: 1px;
  border-color: #0C7F79;
}
.qc-form .form-error {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f4e4dc;
  color: #6b2e1f;
  font-size: 15px;
  line-height: 1.5;
}
/* dc-support (React) drops boolean hidden on hydrate — class toggle is authoritative */
.qc-form .form-error.is-visible {
  display: block;
}
.qc-form .honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.qc-form button[type="submit"] {
  display: inline-block;
  background: #0C7F79;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 16px 32px;
  font-size: 16.5px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  min-height: 44px;
}
.qc-form button[type="submit"]:hover {
  background: #095c58;
}
.qc-form button[type="submit"]:disabled {
  opacity: 0.65;
  cursor: wait;
}
