/* MailUp Newsletter Form – inline validation & response states */

/* Field wrapper spacing */
.mailup-form-wrapper .mailup-field-wrap {
	margin: 16px 0;
}

/* Inline error text */
.mailup-form-wrapper .mailup-error {
	display: block;
	margin-top: 4px;
	font-size: 13px;
	font-weight: 500;
	color: #c0392b;
	min-height: 1em;
}

/* Invalid input state */
.mailup-form-wrapper .form-field.is-invalid {
	border-color: #c0392b !important;
	box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.15);
}

/* Required field asterisk */
.mailup-form-wrapper label .required,
.mailup-form-wrapper span .required {
	color: #c0392b;
	margin-left: 2px;
}

/* Optional form title */
.mailup-form-wrapper .mailup-form-title {
	margin-bottom: 8px;
}

.mailup-form-wrapper .mailup-form-title h2 {
	margin: 0;
}

/* Privacy & informed consent checkboxes */
.mailup-form-wrapper .mailup-field-wrap.form-privacy,
.mailup-form-wrapper .mailup-field-wrap.form-consent {
	margin-bottom: 0;
}

.mailup-form-wrapper .mailup-privacy-inner,
.mailup-form-wrapper .mailup-consent-inner {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mailup-form-wrapper .mailup-privacy-checkbox-label,
.mailup-form-wrapper .mailup-consent-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 12px;
	font-weight: 400;
	line-height: normal;
	cursor: pointer;
}

.mailup-form-wrapper .mailup-privacy-checkbox-label input[type="checkbox"],
.mailup-form-wrapper .mailup-consent-checkbox-label input[type="checkbox"] {
	flex-shrink: 0;
	margin-top: 2px;
}

.mailup-form-wrapper .mailup-privacy-text,
.mailup-form-wrapper .mailup-consent-text {
	margin: 0;
	font-size: 12px;
	font-weight: 400;
	line-height: normal;
}

.mailup-form-wrapper .mailup-privacy-link {
	font-size: 12px;
	text-decoration: underline;
}

.mailup-form-wrapper [name="privacy"].is-invalid + .mailup-privacy-text,
.mailup-form-wrapper [name="privacy"].is-invalid ~ .mailup-privacy-text {
	color: #c0392b;
}

/* Submit button – disabled state */
.mailup-form-wrapper .form-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Form-level messages (success / error) */
.mailup-form-wrapper .mailup-form-message {
	margin-top: 20px;
	padding: 14px 18px;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}

.mailup-form-wrapper .mailup-form-message.is-success {
	background-color: #eafaf1;
	border: 1px solid #27ae60;
	color: #1e8449;
}

.mailup-form-wrapper .mailup-form-message.is-error {
	background-color: #fdf2f2;
	border: 1px solid #c0392b;
	color: #c0392b;
}
