/* VVT Mitgliederverwaltung – Formulare */

.vvt-form-wrap { max-width: 640px; }

.vvt-form .vvt-row {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}
.vvt-form .vvt-row p { flex: 1 1 220px; margin: 0 0 14px; }

.vvt-form label { display: block; font-weight: 600; }
.vvt-form input[type="text"],
.vvt-form input[type="email"],
.vvt-form input[type="tel"],
.vvt-form input[type="date"],
.vvt-form select,
.vvt-form textarea {
	width: 100%;
	padding: 8px 10px;
	margin-top: 4px;
	border: 1px solid #c3c4c7;
	border-radius: 4px;
	font: inherit;
	box-sizing: border-box;
}
.vvt-form .vvt-hint {
	display: block;
	font-weight: 400;
	font-size: 0.85em;
	color: #666;
	margin-top: 2px;
}
.vvt-form .vvt-privacy label { font-weight: 400; }
.vvt-form .vvt-privacy input { margin-right: 6px; }

.vvt-form .vvt-hp {
	position: absolute !important;
	left: -9999px !important;
	height: 1px;
	overflow: hidden;
}

.vvt-submit {
	padding: 10px 22px;
	border: 0;
	border-radius: 4px;
	background: #b91c1c;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
}
.vvt-submit:hover { background: #991b1b; }

.vvt-form-success {
	padding: 14px 18px;
	background: #ecfdf3;
	border: 1px solid #a7f3d0;
	border-radius: 6px;
	color: #065f46;
}
.vvt-form-errors {
	padding: 12px 18px;
	margin-bottom: 16px;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 6px;
	color: #991b1b;
}
.vvt-form-errors ul { margin: 6px 0 0 18px; }
