/**
 * Honeypot Field Styles
 * Multi-layered hiding to prevent bot detection
 * Import this once in main.css or include in each form's CSS
 */

/* Multi-layered honeypot hiding */
.opb-honeypot-field {
  /* Visual hiding */
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  
  /* Interaction prevention */
  pointer-events: none;
  
  /* Screen reader hiding */
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  margin: 0;
  padding: 0;
}

/* Ensure label is also hidden */
.opb-honeypot-field label {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Ensure input is hidden */
.opb-honeypot-field input {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

