.vdue-wrap {
	max-width: 680px;
	margin: 40px auto;
	padding: 0 16px;
	font-family: inherit;
}

.vdue-hero {
	text-align: center;
	margin-bottom: 32px;
}

.vdue-hero h2 {
	font-size: 28px;
	font-weight: 800;
	margin: 0 0 12px;
	color: var(--vdue-accent, #0F3D73);
	line-height: 1.25;
}

.vdue-hero p {
	font-size: 16px;
	line-height: 1.6;
	color: #444;
	margin: 0;
}

.vdue-alert {
	padding: 16px 20px;
	border-radius: 10px;
	margin-bottom: 24px;
	font-size: 15px;
	line-height: 1.5;
}

.vdue-alert-success {
	background: #eaf7ea;
	border: 1px solid #b7e3b7;
	color: #1e5e1e;
}

.vdue-alert-error {
	background: #fdecec;
	border: 1px solid #f3b6b6;
	color: #8a2020;
}

.vdue-form {
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.vdue-field {
	margin-bottom: 20px;
}

.vdue-row {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.vdue-row .vdue-field {
	flex: 1 1 220px;
}

.vdue-field label {
	display: block;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 6px;
	color: #1a1a1a;
}

.vdue-field input[type="text"],
.vdue-field input[type="email"],
.vdue-field input[type="tel"],
.vdue-field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d9d9d9;
	border-radius: 10px;
	font-size: 15px;
	box-sizing: border-box;
	font-family: inherit;
	transition: border-color 0.15s ease;
}

.vdue-field input:focus,
.vdue-field textarea:focus {
	outline: none;
	border-color: var(--vdue-accent, #0F3D73);
}

.vdue-checkboxes,
.vdue-radio-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 4px;
}

.vdue-checkboxes label,
.vdue-radio-group label {
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.vdue-checkboxes input,
.vdue-radio-group input {
	width: 16px;
	height: 16px;
}

.vdue-acopio-info,
.vdue-domicilio-info {
	background: #f5f7fa;
	border-radius: 10px;
	padding: 14px 16px;
}

.vdue-acopio-info p,
.vdue-domicilio-info p {
	margin: 0 0 8px;
	font-size: 14px;
}

.vdue-consent label {
	font-weight: 400;
	font-size: 13px;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: #555;
}

.vdue-consent input {
	margin-top: 3px;
}

.vdue-submit-btn {
	display: block;
	width: 100%;
	background: var(--vdue-accent, #0F3D73);
	color: #fff;
	border: none;
	padding: 16px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 10px;
	cursor: pointer;
	transition: opacity 0.15s ease;
}

.vdue-submit-btn:hover {
	opacity: 0.9;
}

@media (max-width: 480px) {
	.vdue-form {
		padding: 22px;
		border-radius: 12px;
	}
	.vdue-hero h2 {
		font-size: 22px;
	}
}
