/* ContactHub embed styles — safe on dark or light host pages */
.ch-root,
.ch-root * {
  box-sizing: border-box;
}
.ch-root {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: inherit;
  max-width: 420px;
}
.ch-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ch-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
}
.ch-label {
  font-weight: 600;
  opacity: 0.9;
}
.ch-field input,
.ch-field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(128, 128, 128, 0.35);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  font: inherit;
  resize: vertical;
}
.ch-field input:focus,
.ch-field textarea:focus {
  outline: 2px solid #3d9cf0;
  outline-offset: 1px;
}
.ch-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.ch-btn {
  appearance: none;
  border: 0;
  border-radius: 10px;
  padding: 11px 16px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  background: #3d9cf0;
  color: #fff;
}
.ch-btn:disabled {
  opacity: 0.65;
  cursor: wait;
}
.ch-btn:hover:not(:disabled) {
  filter: brightness(1.05);
}
.ch-status {
  min-height: 1.2em;
  font-size: 13px;
}
.ch-ok {
  color: #1f9d55;
}
.ch-err {
  color: #d64545;
}
.ch-turnstile {
  margin: 4px 0;
}
