/* Sonderanfragen-Kontaktformular (class-contact-form.php, [stbk_contact_form]) */

.stbk-contact-form {
	--stbk-accent: #1e69b8;
	--stbk-border: #e0e0e0;
	--stbk-text: #222222;
	--stbk-text-muted: #555555;
	max-width: 640px;
	font-family: var(--stbk-font-body, inherit);
	color: var(--stbk-text);
}

.stbk-contact-notice {
	padding: 14px 16px;
	border-radius: 10px;
	font-size: 14px;
	margin-bottom: 20px;
}
.stbk-contact-notice-success {
	background: #eaf7ee;
	color: #1e6b34;
	border: 1px solid #bfe3cb;
}
.stbk-contact-notice-error {
	background: #fdecec;
	color: #9a2c2c;
	border: 1px solid #f2c2c2;
}

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

.stbk-contact-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}
@media (max-width: 600px) {
	.stbk-contact-row {
		grid-template-columns: 1fr;
	}
}

.stbk-contact-form label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--stbk-text-muted);
}

.stbk-contact-form input[type="text"],
.stbk-contact-form input[type="email"],
.stbk-contact-form input[type="tel"],
.stbk-contact-form select,
.stbk-contact-form textarea {
	font-weight: 400;
	font-size: 14px;
	color: var(--stbk-text);
	border: 1px solid var(--stbk-border);
	border-radius: 8px;
	padding: 10px 12px;
	font-family: inherit;
}

.stbk-contact-full {
	margin-bottom: 16px;
}

.stbk-contact-consent {
	flex-direction: row !important;
	align-items: flex-start;
	gap: 8px !important;
	font-size: 12.5px;
	font-weight: 400 !important;
	margin-bottom: 20px;
}
.stbk-contact-consent input[type="checkbox"] {
	margin-top: 3px;
	flex: none;
}

.stbk-contact-form button[type="submit"] {
	background: var(--stbk-accent);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 12px 24px;
	font-weight: 600;
	cursor: pointer;
}
