/* Netzwerk Erproben – Bewerbungsformular */

.ne-form {
	text-align: left;
	max-width: 720px;
}

.ne-form .ne-field {
	margin-top: 15px;
}

.ne-form .ne-label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	line-height: 1.3;
}

.ne-form .ne-input {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
	border: 1px solid #c9c9c9;
	border-radius: 4px;
	font-size: 16px;
	background: #fff;
}

.ne-form textarea.ne-input {
	resize: vertical;
}

.ne-form .ne-input:focus {
	outline: none;
	border-color: #1f6feb;
	box-shadow: 0 0 0 2px rgba(31, 111, 235, 0.15);
}

/* Zwei-Spalten-Zeile */
.ne-form .ne-row {
	display: flex;
	flex-wrap: wrap;
	gap: 4%;
}

.ne-form .ne-row .formular-50 {
	flex: 1 1 48%;
	min-width: 220px;
}

/* Gruppen werden per JS umgeschaltet */
.ne-form .ne-group {
	display: none;
}

.ne-form .ne-group.is-active {
	display: block;
}

/* Radio / Checkbox */
.ne-form .ne-radio {
	display: inline-block;
	margin-right: 24px;
	font-weight: 400;
}

.ne-form .ne-accept .ne-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-weight: 400;
	line-height: 1.5;
}

.ne-form .ne-accept .ne-checkbox input {
	margin-top: 4px;
	flex: 0 0 auto;
}

.ne-form .ne-hint {
	display: block;
	margin-top: 4px;
	color: #777;
	font-size: 13px;
}

/* Datei-Feld */
.ne-form .ne-file {
	padding: 8px;
	background: #fafafa;
}

/* Button */
.ne-form .ne-submit {
	margin-top: 22px;
}

.ne-form .ne-button {
	display: inline-block;
	padding: 12px 28px;
	background: #1f6feb;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.15s ease;
}

.ne-form .ne-button:hover {
	background: #1a5fd0;
}

/* Hinweise */
.ne-error {
	margin-bottom: 18px;
	padding: 14px 18px;
	border: 1px solid #e0b4b4;
	background: #fff6f6;
	color: #9f3a38;
	border-radius: 6px;
}

.ne-error ul {
	margin: 8px 0 0;
	padding-left: 20px;
}

.ne-confirmation {
	padding: 20px 24px;
	border: 1px solid #b7d8b7;
	background: #f3faf3;
	color: #2c662d;
	border-radius: 6px;
	font-size: 16px;
}
