/* Shared form styles (scoped to Contact page) */

.contact-page .form-row {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.contact-page .form-group {
	flex: 1;
	min-width: 220px;
}

.contact-page label {
	display: block;
	margin-bottom: 0.4rem;
	font-weight: 600;
	color: #031633;
}

.contact-page input,
.contact-page select,
.contact-page textarea {
	width: 100%;
	padding: 10px;
	height: 42px;
	border-radius: 6px;
	border: 1px solid #ccc;
	font-size: 1rem;
	color: #000;
	background: #fff;
	box-sizing: border-box;
}

.contact-page textarea {
	height: auto;
	min-height: 140px;
}

.contact-page button[type="submit"] {
	width: 100%;
	margin-top: 1rem;
	padding: 12px;
	background: #ffc107;
	color: #031633;
	border: none;
	font-size: 1.1rem;
	font-weight: 700;
	border-radius: 8px;
	cursor: pointer;
}

.contact-page button[type="submit"]:hover {
	background: #e0aa06;
}

.contact-page .privacy-disclaimer {
	margin-top: 0.75rem;
	font-size: 0.85rem;
	font-weight: 400;
	line-height: 1.35;
	color: #f64545;
}

@media (max-width: 768px) {
	.contact-page .form-row {
		flex-direction: column;
	}

	.contact-page .form-group {
		min-width: 0;
	}
}
