/* Zelax Contact — lovely, friendly contact form styling, matching the
   site's cream/ink/yellow card system (sampled from .zx-tray). */

.zx-contact-card {
	max-width: 560px;
	margin: 32px auto;
	background: #FFF9E8;
	border: 2px solid #111114;
	border-radius: 18px;
	box-shadow: #111114 8px 8px 0px 0px;
	padding: 32px 30px 34px;
}

.zx-contact-field {
	margin: 0 0 18px;
}

.zx-contact-field label {
	display: block;
	font-weight: 700;
	font-size: 14px;
	text-transform: lowercase;
	margin-bottom: 6px;
	color: #111114;
}

.zx-contact-optional {
	font-weight: 400;
	opacity: 0.6;
}

.zx-contact-field input[type="text"],
.zx-contact-field input[type="email"],
.zx-contact-field textarea {
	width: 100%;
	box-sizing: border-box;
	font-family: inherit;
	font-size: 15px;
	padding: 12px 14px;
	background: #fff;
	border: 2px solid #111114;
	border-radius: 10px;
	color: #111114;
}

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

.zx-contact-field input:focus,
.zx-contact-field textarea:focus {
	outline: none;
	box-shadow: #111114 3px 3px 0px 0px;
}

.zx-contact-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.zx-contact-submit {
	display: inline-block;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	background: #FFDE59;
	color: #111114;
	font-weight: 700;
	font-size: 15px;
	text-transform: lowercase;
	border: 2px solid #111114;
	border-radius: 999px;
	padding: 13px 28px;
	box-shadow: #111114 4px 4px 0px 0px;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.zx-contact-submit:hover {
	transform: translate(-2px, -2px);
	box-shadow: #111114 6px 6px 0px 0px;
}

.zx-contact-submit:active {
	transform: translate(0, 0);
	box-shadow: #111114 2px 2px 0px 0px;
}

.zx-contact-errors {
	background: #fff;
	border: 2px solid #111114;
	border-radius: 12px;
	padding: 14px 16px;
	margin-bottom: 18px;
}

.zx-contact-errors p {
	margin: 0 0 6px;
	font-weight: 600;
	font-size: 14px;
}

.zx-contact-errors p:last-child {
	margin-bottom: 0;
}

.zx-contact-success {
	text-align: center;
	padding: 20px 10px;
}

.zx-contact-success-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #FFDE59;
	border: 2px solid #111114;
	font-size: 24px;
	margin-bottom: 14px;
}

.zx-contact-success h3 {
	margin: 0 0 8px;
	font-size: 22px;
	text-transform: lowercase;
}

.zx-contact-success p {
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
}
