/* Lynxbe Connect — contact form. Neutral styling that inherits theme fonts. */
.lynxbe-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
}

.lynxbe-form__title {
  margin: 0 0 4px;
}

.lynxbe-form__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.95em;
}

.lynxbe-form__field input,
.lynxbe-form__field textarea {
  padding: 10px 12px;
  border: 1px solid #cbd2d9;
  border-radius: 8px;
  font: inherit;
  background: #fff;
  color: #1a202c;
}

.lynxbe-form__field input:focus,
.lynxbe-form__field textarea:focus {
  outline: 2px solid #4c6ef5;
  outline-offset: 1px;
}

.lynxbe-form__consent {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9em;
}

.lynxbe-form__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.lynxbe-form__submit {
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  background: #4c6ef5;
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.lynxbe-form__submit:disabled {
  opacity: 0.6;
  cursor: default;
}

.lynxbe-form__status {
  min-height: 1.2em;
  margin: 0;
  font-size: 0.9em;
}

.lynxbe-form__status.is-success { color: #2f9e44; }
.lynxbe-form__status.is-error { color: #e03131; }
