/* ITAFE · Formularios: honeypot antispam + mensajes de estado.
   Mínimo y neutro para no interferir con el diseño propio de cada formulario. */

/* Campo trampa: invisible para humanos, los bots lo rellenan. No usar display:none
   (algunos bots lo detectan); lo sacamos de pantalla. */
.itafe-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

/* Mensaje de resultado bajo el formulario */
.itafe-form-msg {
	margin-top: 14px;
	font-size: 0.95rem;
	line-height: 1.5;
	font-weight: 600;
}
.itafe-form-msg:empty {
	margin-top: 0;
}
.itafe-form-msg.is-ok {
	color: #0a7d2c;
	background: #e7f6ec;
	border: 1px solid #b7e3c4;
	border-radius: 10px;
	padding: 12px 16px;
}
.itafe-form-msg.is-error {
	color: #b00020;
	background: #fdecee;
	border: 1px solid #f3c2ca;
	border-radius: 10px;
	padding: 12px 16px;
}
