/* Contact form wiring. See assets/lead-form.js. */

/* The honeypot. Clip it — a negative left: would widen an RTL page instead of
   hiding the field, which is what made a whole page render blank once. */
.lead-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.lead-error {
  color: #ffb4b4;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
  min-height: 0;
}
.lead-error:empty { display: none; }
