/* Minimal, override-friendly base styling — the site theme's CSS should
   win on specificity for anything visual; this just makes the form usable
   out of the box before any theme styling is applied. */

.mflf-form {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mflf-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mflf-field label {
  font-size: 14px;
  font-weight: 600;
}

.mflf-field input,
.mflf-field select,
.mflf-field textarea {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
}

/* Off-screen rather than display:none — some spam bots specifically skip
   display:none/visibility:hidden fields, defeating the honeypot's purpose. */
.mflf-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.mflf-submit-btn {
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  background: #1a1a1a;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.mflf-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.mflf-status {
  font-size: 13px;
  min-height: 18px;
}

.mflf-status-success {
  color: #15803d;
}

.mflf-status-error {
  color: #b91c1c;
}
