.nvmf-form {
	max-width: 640px;
	margin: 0 auto;
}

.nvmf-field {
	margin-bottom: 1.1em;
	display: flex;
	flex-direction: column;
	gap: 0.35em;
}

.nvmf-field label {
	font-weight: 600;
}

.nvmf-required {
	color: #c0392b;
}

.nvmf-input,
.nvmf-field select,
.nvmf-field textarea {
	width: 100%;
	padding: 0.55em 0.7em;
	border: 1px solid #c9ccd1;
	border-radius: 4px;
	font-size: 1em;
	box-sizing: border-box;
}

.nvmf-field-has-error .nvmf-input,
.nvmf-field-has-error select,
.nvmf-field-has-error textarea {
	border-color: #c0392b;
}

.nvmf-field-error-message {
	color: #c0392b;
	font-size: 0.9em;
}

.nvmf-form-error {
	background: #fdecea;
	border: 1px solid #f5c2be;
	color: #7a1f16;
	padding: 0.8em 1em;
	border-radius: 4px;
	margin-bottom: 1em;
}

.nvmf-form-success {
	background: #eafaf1;
	border: 1px solid #b7ebc6;
	color: #1e5631;
	padding: 0.8em 1em;
	border-radius: 4px;
}

.nvmf-field-consent .nvmf-consent-label {
	display: flex;
	align-items: flex-start;
	gap: 0.5em;
	font-weight: normal;
}

.nvmf-field-consent .nvmf-consent-label input[type="checkbox"] {
	margin-top: 0.2em;
	flex-shrink: 0;
}

.nvmf-honeypot-wrap {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.nvmf-radio-group,
.nvmf-checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 0.4em;
}

.nvmf-radio-option,
.nvmf-checkbox-option,
.nvmf-checkbox-single {
	font-weight: normal;
	display: flex;
	align-items: center;
	gap: 0.4em;
}

.nvmf-submit-button {
	background: #2271b1;
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: 0.6em 1.4em;
	font-size: 1em;
	cursor: pointer;
}

.nvmf-submit-button:hover {
	background: #135e96;
}

.nvmf-submit-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
