.nws-wrap {
	max-width: 560px;
}

.nws-form .nws-field {
	margin-bottom: 1rem;
}

.nws-form label {
	display: block;
	margin-bottom: 0.3rem;
	font-weight: 600;
}

.nws-form input[type="email"],
.nws-form input[type="text"] {
	box-sizing: border-box;
	width: 100%;
	padding: 0.6rem 0.75rem;
	border: 1px solid #c3c8d0;
	border-radius: 4px;
	font: inherit;
}

.nws-form input[type="email"]:focus,
.nws-form input[type="text"]:focus {
	border-color: #004f9f;
	outline: 2px solid rgba(0, 79, 159, 0.2);
}

.nws-form .nws-field--error input[type="email"],
.nws-form .nws-field--error input[type="text"] {
	border-color: #c62828;
}

.nws-required {
	color: #c62828;
}

.nws-error {
	margin: 0.3rem 0 0;
	color: #c62828;
	font-size: 0.9em;
}

/* Vorname und Nachname nebeneinander, auf dem Handy untereinander */
.nws-row {
	display: flex;
	gap: 1rem;
}

.nws-row .nws-field {
	flex: 1 1 0;
	min-width: 0;
}

@media (max-width: 480px) {
	.nws-row {
		display: block;
	}
}

.nws-privacy {
	margin: 0 0 1rem;
}

.nws-submit button {
	padding: 0.7rem 2rem;
	border: 0;
	border-radius: 4px;
	background: #004f9f;
	color: #fff;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}

.nws-submit button:hover,
.nws-submit button:focus {
	background: #003b77;
}

.nws-hint {
	margin-top: 0.75rem;
	font-size: 0.85em;
	opacity: 0.75;
}

/* Honeypots ausblenden (nicht per display:none, das erkennen manche Bots) */
.nws-hp {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.nws-notice {
	margin-bottom: 1rem;
	padding: 0.9rem 1rem;
	border-left: 4px solid;
	border-radius: 4px;
}

.nws-notice--success {
	border-color: #2e7d32;
	background: #edf7ee;
	color: #1b5e20;
}

.nws-notice--error {
	border-color: #c62828;
	background: #fdecea;
	color: #8e1c1c;
}

/* Bestätigungsseite */
.nws-confirm {
	margin: 2rem 0;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.25;
}

.nws-confirm--success {
	color: #2e7d32;
}

.nws-confirm--error {
	color: #c62828;
}
