/* Wrapper for wp-login.php reCAPTCHA */
#loginform .lgre-wp-login-recaptcha-wrapper {
	display: flex;
	width: 100%;
	justify-content: center;
	margin-top: 30px;
	margin-bottom: 0;
	transform-origin: center top;
	transform: scale(0.90);
	min-height: 82px; /* safe height for reCAPTCHA v2 */
}

/* Reduced scale on small screens */
@media (max-width: 380px) {
	#loginform .lgre-wp-login-recaptcha-wrapper {
		transform: scale(0.86);
	}
}

/* Focus outline */
#loginform .lgre-wp-login-recaptcha-wrapper:focus-visible {
	outline: 2px solid #2271b1;
	outline-offset: 3px;
}

/* Login Protect lockout countdown message */
#login .lgre-login-protect-lockout-message p {
	margin: 0;
}

#login #lgre-login-protect-countdown {
	font-variant-numeric: tabular-nums;
}
