/* Minuteur de blocage anti-bruteforce (LoginThrottle) — commun aux formulaires de connexion. */

.login-throttle {
	display: block;
	margin: 8px 0;
	padding: 10px 12px;
	border: 1px solid #f0c48a;
	background: #fff4e5;
	color: #8a4b00;
	border-radius: 6px;
	font-size: 13px;
	line-height: 18px;
}

.login-throttle [data-lock-timer] {
	font-weight: bold;
	font-variant-numeric: tabular-nums;
}

/* Déclencheur de soumission neutralisé pendant le blocage (y compris boutons pilotés en JS). */
.is-throttle-locked {
	pointer-events: none;
	opacity: 0.55;
	cursor: not-allowed;
}
