/* UTK Newsletter Frontend Form Styles */
.utk-newsletter-form-wrapper {
	max-width: 480px;
	margin: 0 auto;
}

.utk-nl-form-title {
	font-size: 22px;
	margin-bottom: 16px;
}

.utk-nl-field {
	margin-bottom: 14px;
}

.utk-nl-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 4px;
	font-size: 14px;
}

.utk-nl-field input[type="text"],
.utk-nl-field input[type="email"] {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 15px;
	box-sizing: border-box;
	transition: border-color 0.15s;
}

.utk-nl-field input:focus {
	outline: none;
	border-color: #1a56db;
	box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.15);
}

.utk-nl-consent {
	margin-bottom: 16px;
	font-size: 14px;
	line-height: 1.5;
}

.utk-nl-consent label {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	cursor: pointer;
}

.utk-nl-consent input[type="checkbox"] {
	margin-top: 3px;
	flex-shrink: 0;
}

.utk-nl-btn {
	display: inline-block;
	padding: 12px 28px;
	background: #1a56db;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s;
}

.utk-nl-btn:hover {
	background: #1e429f;
}

.utk-nl-notice {
	padding: 12px 16px;
	border-radius: 6px;
	margin-bottom: 16px;
	font-size: 14px;
}

.utk-nl-success {
	background: #dcfce7;
	color: #166534;
	border: 1px solid #bbf7d0;
}

.utk-nl-error {
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #fecaca;
}
