.tdpg-form-wrap {
	max-width: 700px;
	margin: 0 auto;
	padding-bottom: 12px;
}

.tdpg-notice {
	padding: 14px 18px;
	border-radius: 6px;
	margin-bottom: 20px;
	font-size: 15px;
}

.tdpg-notice-success {
	background: #eaf7ee;
	color: #1e6b34;
	border: 1px solid #bfe6cb;
}

.tdpg-notice-error {
	background: #fdecea;
	color: #9b2c22;
	border: 1px solid #f5c6c0;
}

.tdpg-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.tdpg-field {
	margin-bottom: 14px;
}

.tdpg-field-full {
	grid-column: 1 / -1;
}

.tdpg-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: #1a1a1a;
}

.tdpg-required {
	color: #e0362a;
	margin-left: 2px;
}

.tdpg-hint {
	font-size: 13px;
	color: #6b8ba4;
	margin: 0 0 8px;
}

.tdpg-form input[type="text"],
.tdpg-form input[type="email"],
.tdpg-form input[type="tel"],
.tdpg-form textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	background: #eef3f8;
	border: 1px solid #d7e1ea;
	border-radius: 4px;
	font-size: 15px;
	color: #1a1a1a;
}

.tdpg-form input[type="text"]:focus,
.tdpg-form input[type="email"]:focus,
.tdpg-form input[type="tel"]:focus,
.tdpg-form textarea:focus {
	outline: none;
	border-color: #8fb3d1;
}

.tdpg-form textarea {
	resize: vertical;
	min-height: 110px;
}

.tdpg-form input[type="file"] {
	display: block;
	font-size: 14px;
}

.tdpg-consent label {
	font-weight: 400;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.tdpg-consent input[type="checkbox"] {
	margin-top: 4px;
}

/* Turnstile renders its own iframe here; only the surrounding gap is ours. */
.tdpg-turnstile {
	margin-bottom: 18px;
}

.tdpg-submit {
	background: #f26b4d;
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	margin-top: 6px;
	margin-bottom: 16px;
}

.tdpg-submit:hover {
	background: #e0563b;
}

/* Honeypot: off-screen, not display:none - some bots skip hidden fields
   but still probe for elements moved out of the visible viewport. */
.tdpg-hp {
	position: absolute;
	left: -9999px;
	top: -9999px;
}

@media (max-width: 600px) {
	.tdpg-row {
		grid-template-columns: 1fr;
	}
}
