/* Fieldhouse Contact — front-end. Additive: inputs inherit the theme's
   .contact-form styling; this only adds the honeypot, notices, and errors. */

.fh-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px; height: 1px; overflow: hidden;
}

.fh-contact-wrap .fh-note {
	border-radius: 10px;
	padding: 13px 16px;
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.5;
	font-family: inherit;
}
.fh-contact-wrap .fh-note--ok {
	background: rgba(86, 224, 160, .12);
	border: 1px solid rgba(86, 224, 160, .42);
	color: #b7f3d6;
}
.fh-contact-wrap .fh-note--err {
	background: rgba(236, 90, 90, .10);
	border: 1px solid rgba(236, 90, 90, .42);
	color: #f4c2c2;
}

.fh-contact .fh-err {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	letter-spacing: .01em;
	color: #ec6a6a;
}
.fh-contact .field.has-err input,
.fh-contact .field.has-err textarea {
	border-color: #ec6a6a !important;
}

.fh-contact .fh-submit[disabled] { opacity: .6; cursor: default; }

/* Minimal fallback styling only when NOT inside a theme .contact-form
   (keeps the form usable on themes that don't style it). */
.fh-contact:not(.contact-form) .field { margin-bottom: 16px; }
.fh-contact:not(.contact-form) label { display: block; margin-bottom: 6px; font-weight: 600; }
.fh-contact:not(.contact-form) input,
.fh-contact:not(.contact-form) textarea {
	width: 100%; padding: 12px 14px; border-radius: 8px;
	border: 1px solid rgba(127, 127, 127, .4); background: transparent; color: inherit; font: inherit;
}
.fh-contact:not(.contact-form) textarea { min-height: 150px; resize: vertical; }
