/*
 * LUGBN: wp-login.php branding — gap-filling only.
 *
 * The Log In button and BuddyBoss's own login links are driven by Theme Options
 * (BuddyBoss → Theme Options → Login/Register), through the
 * `--bb-login-register-*` custom properties. Those are set and correct, and this
 * file deliberately does NOT redefine them — Theme Options stays the single
 * source of truth for anything BuddyBoss exposes a control for.
 *
 * What is left here is only what those controls cannot reach: WordPress core's
 * own login chrome, which sits outside BuddyBoss's variable system and stays on
 * core greys and admin-scheme blue however the palette is set.
 */

/*
 * Core's login links — Register / Lost your password / ← Go to <site> / the
 * privacy policy link. BuddyBoss's link colour setting does not apply to these.
 */
body.login #nav a,
body.login #backtoblog a,
body.login .privacy-policy-link {
	color: #032E1C;
}

body.login #nav a:hover,
body.login #nav a:focus,
body.login #backtoblog a:hover,
body.login #backtoblog a:focus,
body.login .privacy-policy-link:hover,
body.login .privacy-policy-link:focus {
	color: #1FCB60;
}

/*
 * The input focus ring comes from the admin colour scheme
 * (--wp-admin-theme-color, #3858e9) — otherwise the last blue left on the page.
 */
body.login input[type="text"]:focus,
body.login input[type="email"]:focus,
body.login input[type="password"]:focus,
body.login input[type="checkbox"]:focus {
	border-color: #1FCB60;
	box-shadow: 0 0 0 1px #1FCB60;
	outline: 2px solid transparent;
}
