.nenuvo-form {
	background: var(--nv-surface, #fff);
	border: 1px solid var(--nv-line, #d7d9dd);
	border-radius: 1rem;
	margin: 2rem 0;
	padding: clamp(1.25rem, 4vw, 2.5rem);
}

.nenuvo-form__grid {
	display: grid;
	gap: 1.1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nenuvo-form__field--full {
	grid-column: 1 / -1;
}

.nenuvo-form label {
	display: block;
	font-size: 0.86rem;
	font-weight: 700;
	margin-bottom: 0.4rem;
}

.nenuvo-form :where(input:not([type="checkbox"]), select, textarea) {
	background: var(--nv-canvas, #f4f2ed);
	border: 1px solid var(--nv-line-strong, #aeb4bc);
	border-radius: 0.7rem;
	color: var(--nv-ink, #111419);
	font: inherit;
	min-height: 3rem;
	padding: 0.7rem 0.8rem;
	transition: border-color 160ms ease, box-shadow 160ms ease;
	width: 100%;
}

.nenuvo-form :where(input:not([type="checkbox"]), select, textarea):focus {
	border-color: var(--nv-focus, #075bb5);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--nv-focus, #075bb5) 22%, transparent);
	outline: 0;
}

.nenuvo-form textarea {
	min-height: 10rem;
	resize: vertical;
}

.nenuvo-form__checkbox {
	align-items: flex-start;
	display: flex;
	gap: 0.65rem;
}

.nenuvo-form__checkbox input {
	height: 1.25rem;
	margin-top: 0.15rem;
	width: 1.25rem;
}

.nenuvo-form__help {
	color: var(--nv-muted, #59616d);
	font-size: 0.82rem;
	margin: 0.35rem 0 0;
}

.nenuvo-form__honeypot {
	left: -10000px;
	position: absolute;
}

.nenuvo-form-status {
	border: 1px solid currentColor;
	border-radius: 0.7rem;
	margin: 1rem 0;
	padding: 1rem;
}

.nenuvo-form-status--success {
	color: var(--nv-positive, #14653a);
}

.nenuvo-form-status--error {
	color: var(--nv-negative, #a32626);
}

@media (max-width: 560px) {
	.nenuvo-form__grid {
		grid-template-columns: 1fr;
	}

	.nenuvo-form__field--full {
		grid-column: auto;
	}
}
