/* Theme-agnostic baseline for ZRently Sites form states. Each
 * theme can override these with its own form CSS — these are just
 * the bits that need consistent semantics across themes (honeypot
 * hidden, error/success containers visible-when-needed). */

.zrently-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

[data-zrently-form-error] {
  display: block;
  margin: 12px 0;
  padding: 10px 12px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  color: #991b1b;
  font-size: 14px;
  line-height: 1.4;
}

[data-zrently-form-success] {
  display: block;
  margin: 12px 0;
  padding: 14px 16px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 6px;
  color: #065f46;
  font-size: 15px;
  line-height: 1.5;
}
