/*
 * BrandTap Billing — wp-login.php override
 * Removes WordPress branding and matches the BrandTap brand system
 * (paper #F5F4EE / ink #0A0A0A / yellow #FFD800, Geist typography).
 * Registered via login_enqueue_scripts in class-btb-admin.php.
 */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700;800&family=Newsreader:opsz,ital,wght@6..72,0,400;6..72,1,400&display=swap');

/* ─── Page background ─────────────────────────────────────────────────────── */
body.login {
	background: #F5F4EE !important;
	font-family: 'Geist', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #0A0A0A;
}

/* ─── Logo / header link — replace WP logo with site name ─────────────────── */
#login h1 a {
	background-image: none !important;
	background-size: 0 !important;
	width: auto !important;
	height: auto !important;
	text-indent: 0 !important;
	display: block;
	text-align: center;
	padding: 0 !important;
	margin: 0 auto 20px !important;
	font-size: 0;
}

/* Render site name via ::after (title attr set by login_headertitle filter) */
#login h1 a::after {
	content: attr(title);
	font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 1.6rem;
	font-weight: 800;
	color: #0A0A0A;
	letter-spacing: -.025em;
	display: block;
	text-align: center;
	text-decoration: none;
}

/* ─── Contain the form ────────────────────────────────────────────────────── */
#login {
	max-width: 380px !important;
	width: 100% !important;
	padding: 0 !important;
}

/* ─── Form card ───────────────────────────────────────────────────────────── */
#loginform,
#lostpasswordform,
#resetpassform {
	background: #FFFFFF !important;
	border: 1px solid rgba(10,10,10,0.10) !important;
	border-radius: 16px !important;
	box-shadow: 0 2px 10px rgba(10,10,10,0.04) !important;
	padding: 28px 28px 24px !important;
	margin-bottom: 16px !important;
}

/* ─── Labels ──────────────────────────────────────────────────────────────── */
#loginform label,
#lostpasswordform label,
#resetpassform label {
	font-family: 'Geist Mono', ui-monospace, monospace !important;
	font-size: 0.72rem !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: .08em !important;
	color: #595959 !important;
	opacity: 1;
}

/* ─── Inputs ──────────────────────────────────────────────────────────────── */
#loginform input[type="text"],
#loginform input[type="password"],
#loginform input[type="email"],
#lostpasswordform input[type="text"],
#lostpasswordform input[type="email"],
#resetpassform input[type="password"] {
	border: 1px solid rgba(10,10,10,0.18) !important;
	border-radius: 10px !important;
	padding: 11px 14px !important;
	font-size: 0.95rem !important;
	font-family: 'Geist', inherit !important;
	color: #0A0A0A !important;
	background: #FFFFFF !important;
	box-shadow: none !important;
	-webkit-appearance: none;
	appearance: none;
	transition: border-color .15s, box-shadow .15s;
}

#loginform input[type="text"]:focus,
#loginform input[type="password"]:focus,
#loginform input[type="email"]:focus,
#lostpasswordform input[type="text"]:focus,
#lostpasswordform input[type="email"]:focus,
#resetpassform input[type="password"]:focus {
	border-color: #0A0A0A !important;
	box-shadow: 0 0 0 3px rgba(255,216,0,0.35) !important;
	outline: none !important;
}

/* ─── Submit button ───────────────────────────────────────────────────────── */
.wp-core-ui .button-primary,
.wp-core-ui .button-primary:visited {
	background: #0A0A0A !important;
	border-color: #0A0A0A !important;
	border-radius: 10px !important;
	font-family: 'Geist', inherit !important;
	font-size: 0.95rem !important;
	font-weight: 600 !important;
	padding: 11px 22px !important;
	box-shadow: none !important;
	text-shadow: none !important;
	color: #F5F4EE !important;
	letter-spacing: -.005em;
	transition: box-shadow .15s, transform .08s !important;
}

.wp-core-ui .button-primary:hover,
.wp-core-ui .button-primary:focus {
	background: #0A0A0A !important;
	border-color: #0A0A0A !important;
	box-shadow: 0 0 0 3px rgba(255,216,0,0.45) !important;
}

.wp-core-ui .button-primary:active {
	transform: translateY(1px);
}

/* ─── Remember me checkbox ────────────────────────────────────────────────── */
#rememberme {
	accent-color: #FFD800;
}

/* ─── Hide WordPress footer nav links ────────────────────────────────────── */
#nav,
#backtoblog {
	display: none !important;
}

/* ─── Error / message boxes ───────────────────────────────────────────────── */
#login_error,
.message {
	border-radius: 10px !important;
	border-left: 4px solid !important;
	box-shadow: none !important;
	font-family: 'Geist', inherit !important;
}

#login_error {
	background: #FEF2F2 !important;
	border: 1px solid #FCA5A5 !important;
	border-left-color: #DC2626 !important;
	color: #991B1B !important;
}

.message {
	background: #FFF9D6 !important;
	border: 1px solid #FFD800 !important;
	border-left-color: #F0C800 !important;
	color: #2A2A2A !important;
}
