.pzc-contact {
	color: #e5e7eb;
}

.pzc-contact__form {
	margin: 24px 0 34px;
	padding: 24px;
	border: 1px solid #334155;
	border-radius: 16px;
	background: #171a1d;
}

.pzc-contact__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.pzc-contact__field--full {
	grid-column: 1 / -1;
}

.pzc-contact__field {
	display: block;
	color: #f8fafc;
	font-weight: 700;
	line-height: 1.45;
}

.pzc-contact__field > span {
	display: block;
	margin-bottom: 7px;
}

.pzc-contact em,
.pzc-contact__consent em {
	color: #67e8f9;
	font-style: normal;
}

.pzc-contact input[type="text"],
.pzc-contact input[type="email"],
.pzc-contact input[type="url"],
.pzc-contact select,
.pzc-contact textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 13px;
	border: 1px solid #475569;
	border-radius: 7px;
	background: #0f1317;
	color: #f8fafc;
	font: inherit;
	line-height: 1.4;
}

.pzc-contact textarea {
	min-height: 170px;
	resize: vertical;
}

.pzc-contact input:focus,
.pzc-contact select:focus,
.pzc-contact textarea:focus {
	border-color: #00dce8;
	outline: 2px solid rgba(0, 220, 232, .2);
	outline-offset: 1px;
}

.pzc-contact__field small {
	display: block;
	margin-top: 7px;
	color: #94a3b8;
	font-size: .82rem;
	font-weight: 400;
}

.pzc-contact__consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: #cbd5e1;
	font-size: .94rem;
	font-weight: 500;
	line-height: 1.55;
}

.pzc-contact__consent input {
	width: 18px;
	height: 18px;
	margin: 3px 0 0;
	accent-color: #00dce8;
	flex: 0 0 auto;
}

.pzc-contact__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
}

.pzc-contact__actions button {
	min-height: 48px;
	padding: 0 22px;
	border: 0;
	border-radius: 7px;
	background: #00dce8;
	color: #071014;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

.pzc-contact__actions button:hover,
.pzc-contact__actions button:focus-visible {
	background: #67e8f9;
}

.pzc-contact__actions span {
	color: #94a3b8;
	font-size: .85rem;
}

.pzc-contact__notice {
	margin: 20px 0;
	padding: 14px 16px;
	border-radius: 8px;
	font-weight: 700;
}

.pzc-contact__notice--success {
	border: 1px solid #14b8a6;
	background: rgba(20, 184, 166, .12);
	color: #ccfbf1;
}

.pzc-contact__notice--error {
	border: 1px solid #fb7185;
	background: rgba(244, 63, 94, .12);
	color: #ffe4e6;
}

.pzc-contact__trap {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

@media (max-width: 680px) {
	.pzc-contact__form {
		padding: 19px;
	}

	.pzc-contact__grid {
		grid-template-columns: 1fr;
	}

	.pzc-contact__field--full {
		grid-column: auto;
	}

	.pzc-contact__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.pzc-contact__actions button {
		width: 100%;
	}
}

