/**
 * Lead Form Actions — Frontend Styles
 *
 * Styles for the success message overlay and countdown.
 *
 * @package LeadFormActions
 */

/* ── Success message ─────────────────────────────────────────────────────── */

.lfa-success-message {
	margin-top: 1.25rem;
	padding: 1.25rem 1.5rem;
	background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
	border: 1px solid #86efac;
	border-left: 4px solid #22c55e;
	border-radius: 0.5rem;
	color: #166534;
	font-size: 1rem;
	line-height: 1.6;
	box-shadow: 0 2px 8px rgba(34, 197, 94, 0.12);
	animation: lfaFadeSlideIn 0.35s ease both;
}

.lfa-success-message p {
	margin: 0 0 0.5rem;
}

.lfa-success-message p:last-child {
	margin-bottom: 0;
}

.lfa-countdown {
	margin-top: 0.75rem !important;
	font-size: 0.875rem;
	opacity: 0.8;
	font-style: italic;
}

/* ── Animation ───────────────────────────────────────────────────────────── */

@keyframes lfaFadeSlideIn {
	from {
		opacity: 0;
		transform: translateY( -8px );
	}
	to {
		opacity: 1;
		transform: translateY( 0 );
	}
}

/* ── Honeypot field (hidden from real users) ─────────────────────────────── */

.lfa-hp-field {
	position: absolute !important;
	left: -9999px !important;
	height: 0 !important;
	overflow: hidden !important;
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}
