/**
 * Contact page form.
 *
 * Scoped under .poppsee-contact-form so it cannot reach the Trade Form (CF7)
 * or the Mailchimp footer form, both of which render bare inputs the theme
 * styles elsewhere.
 */

.poppsee-contact-form {
	max-width: 720px;
	margin: 0 auto 60px;
	padding: 0 15px;
}

.poppsee-contact-form h2 {
	margin-bottom: 24px;
	text-align: center;
}

/* The honeypot. Hidden from people, still filled in by bots.
   Not display:none — some bots skip those. */
.poppsee-contact-form .pcf-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.poppsee-contact-form .pcf-row {
	margin-bottom: 18px;
}

.poppsee-contact-form .pcf-row label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	line-height: 1.4;
}

.poppsee-contact-form .pcf-req {
	color: #c0392b;
}

.poppsee-contact-form .pcf-optional {
	font-weight: 400;
	opacity: 0.6;
}

.poppsee-contact-form input[type="text"],
.poppsee-contact-form input[type="email"],
.poppsee-contact-form input[type="tel"],
.poppsee-contact-form textarea {
	display: block;
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #cfcfcf;
	border-radius: 4px;
	background: #fff;
	font: inherit;
	line-height: 1.5;
}

.poppsee-contact-form textarea {
	resize: vertical;
	min-height: 140px;
}

.poppsee-contact-form input:focus,
.poppsee-contact-form textarea:focus {
	outline: 2px solid #333;
	outline-offset: 1px;
	border-color: #333;
}

.poppsee-contact-form [aria-invalid="true"] {
	border-color: #c0392b;
}

.poppsee-contact-form .pcf-error {
	display: block;
	margin-top: 6px;
	color: #c0392b;
	font-size: 14px;
}

.poppsee-contact-form .pcf-notice {
	margin-bottom: 24px;
	padding: 14px 16px;
	border-radius: 4px;
	border: 1px solid transparent;
	line-height: 1.5;
}

.poppsee-contact-form .pcf-notice--ok {
	border-color: #b7dfc2;
	background: #eef8f1;
	color: #1e6b38;
}

.poppsee-contact-form .pcf-notice--error {
	border-color: #f0c2bc;
	background: #fdefed;
	color: #96271a;
}

.poppsee-contact-form .pcf-actions {
	margin-top: 26px;
	text-align: center;
}

.poppsee-contact-form .pcf-actions button {
	min-width: 200px;
	padding: 13px 30px;
	border: 0;
	border-radius: 4px;
	background: #000;
	color: #fff;
	font: inherit;
	font-weight: 600;
	letter-spacing: 0.02em;
	cursor: pointer;
}

.poppsee-contact-form .pcf-actions button:hover,
.poppsee-contact-form .pcf-actions button:focus {
	background: #333;
}

@media (max-width: 575px) {
	.poppsee-contact-form .pcf-actions button {
		width: 100%;
	}
}
