/* Oculta el honeypot anti-spam de forma accesible. No se usa display:none / visibility
   (algunos bots los detectan y saltean el campo): se lo saca del viewport. */
.as-hp {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
