.uneq-nl-form {
	--unl-primary: #152839;
	--unl-accent: #F8931F;
	max-width: 420px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-family: inherit;
}
.uneq-nl-title {
	margin: 0 0 4px;
	color: var(--unl-primary, #152839);
}
.uneq-nl-form input[type="email"],
.uneq-nl-form input[type="text"] {
	padding: 12px 14px;
	border: 1px solid #cfd6dd;
	border-radius: 8px;
	font-size: 16px;
	width: 100%;
	box-sizing: border-box;
}
.uneq-nl-form input:focus {
	outline: none;
	border-color: var(--unl-accent, #F8931F);
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}
.uneq-nl-consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13px;
	line-height: 1.45;
	color: #4a5560;
}
.uneq-nl-consent input {
	margin-top: 3px;
}
.uneq-nl-consent a {
	color: var(--unl-accent, #F8931F);
}
.uneq-nl-submit {
	background: var(--unl-primary, #152839);
	color: #fff;
	border: none;
	padding: 13px 18px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease;
}
.uneq-nl-submit:hover {
	background: var(--unl-accent, #F8931F);
}
.uneq-nl-submit:disabled {
	opacity: 0.6;
	cursor: default;
}
.uneq-nl-message {
	font-size: 14px;
	line-height: 1.5;
}
.uneq-nl-message.is-success {
	color: #1a7f37;
}
.uneq-nl-message.is-error {
	color: #b00020;
}
