.npr-form-wrap {
	clear: both;
	margin: 2rem 0;
	padding: clamp(1.25rem, 3vw, 2.25rem);
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.npr-form-header h2 {
	margin: 0 0 .5rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.npr-form-header p {
	margin: 0 0 1.5rem;
	color: #475569;
}

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

.npr-field {
	margin: 0;
}

.npr-field-wide {
	grid-column: 1 / -1;
}

.npr-field label {
	display: block;
	margin-bottom: .4rem;
	font-weight: 650;
}

.npr-field input,
.npr-field select,
.npr-field textarea {
	box-sizing: border-box;
	width: 100%;
	min-height: 46px;
	padding: .7rem .8rem;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	background: #fff;
	font: inherit;
}

.npr-field textarea {
	min-height: 120px;
	resize: vertical;
}

.npr-field input:focus,
.npr-field select:focus,
.npr-field textarea:focus {
	outline: 2px solid currentColor;
	outline-offset: 1px;
}

.npr-submit-row {
	margin: 1.25rem 0 0;
}

.npr-submit {
	min-height: 46px;
	padding: .75rem 1.4rem !important;
	font-weight: 700 !important;
	cursor: pointer;
}

.npr-notice {
	margin: 0 0 1.25rem;
	padding: .85rem 1rem;
	border-radius: 8px;
	border-left: 4px solid;
}

.npr-success {
	border-color: #15803d;
	background: #f0fdf4;
	color: #166534;
}

.npr-error {
	border-color: #b91c1c;
	background: #fef2f2;
	color: #991b1b;
}

.npr-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

@media (max-width: 680px) {
	.npr-grid {
		grid-template-columns: 1fr;
	}

	.npr-field-wide {
		grid-column: auto;
	}
}
