/* DPI Contact - brand-styled forms. Colors: red #D90012, navy #062B63, blue #00AEEF. */
.dpi-contact-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
	max-width: 640px;
}

.dpi-contact-field input[type="text"],
.dpi-contact-field input[type="email"],
.dpi-contact-field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d1d5db;
	border-radius: 4px;
	background: #ffffff;
	color: #222222;
	font-family: inherit;
	font-size: 15px;
	line-height: 1.5;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.dpi-contact-field input:focus,
.dpi-contact-field textarea:focus {
	outline: none;
	border-color: #00AEEF;
	box-shadow: 0 0 0 3px rgba(0, 174, 239, .18);
}

.dpi-contact-field textarea {
	resize: vertical;
	min-height: 120px;
}

/* Honeypot: invisible to humans, catches bots that autofill. */
.dpi-contact-hp {
	position: absolute;
	left: -9999px;
	top: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
}

.dpi-contact-submit {
	align-self: flex-start;
	padding: 12px 28px;
	border: 0;
	border-radius: 4px;
	background-color: #D90012;
	color: #ffffff;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: background-color .2s ease;
}

.dpi-contact-submit:hover,
.dpi-contact-submit:focus {
	background-color: #A80010;
	color: #ffffff;
}

.dpi-contact-success {
	padding: 12px 16px;
	border: 1px solid #cfe8dc;
	border-radius: 4px;
	background: #eef9f3;
	color: #1c5d3f;
}

.dpi-contact-error {
	padding: 12px 16px;
	border: 1px solid #f3d0d5;
	border-radius: 4px;
	background: #fdeef0;
	color: #7c1d2a;
}