/*
 * BrandTap Billing — wp-login.php override
 * Removes WordPress branding and matches the BrandTap dashboard login card
 * (class-btb-admin.php registers this via login_enqueue_scripts).
 */

/* ─── Page background ─────────────────────────────────────────────────────── */
body.login {
	background: #F9FAFB !important;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ─── 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; /* hide empty link text */
}

/* Render site name via ::after (title attr set by login_headertitle filter) */
#login h1 a::after {
	content: attr(title);
	font-size: 1.5rem;
	font-weight: 800;
	color: #2563EB;
	letter-spacing: -.5px;
	display: block;
	text-align: center;
	text-decoration: none;
}

/* ─── Contain the form ────────────────────────────────────────────────────── */
#login {
	max-width: 360px !important;
	width: 100% !important;
	padding: 0 !important;
}

/* ─── Form card ───────────────────────────────────────────────────────────── */
#loginform,
#lostpasswordform,
#resetpassform {
	background: #ffffff !important;
	border-radius: 12px !important;
	box-shadow: 0 4px 24px rgba(0, 0, 0, .10) !important;
	border: none !important;
	padding: 28px 28px 24px !important;
	margin-bottom: 16px !important;
}

/* ─── Labels ──────────────────────────────────────────────────────────────── */
#loginform label,
#lostpasswordform label,
#resetpassform label {
	font-size: 0.72rem !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: .05em !important;
	color: #1F2937;
	opacity: .55;
}

/* ─── 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: 1.5px solid #e5e7eb !important;
	border-radius: 8px !important;
	padding: 10px 12px !important;
	font-size: 0.9375rem !important;
	font-family: inherit !important;
	color: #1F2937 !important;
	background: #fff !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: #2563EB !important;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, .12) !important;
	outline: none !important;
}

/* ─── Submit button ───────────────────────────────────────────────────────── */
.wp-core-ui .button-primary,
.wp-core-ui .button-primary:visited {
	background: #2563EB !important;
	border-color: #1E40AF !important;
	border-radius: 8px !important;
	font-size: 0.9375rem !important;
	font-weight: 700 !important;
	padding: 10px 20px !important;
	box-shadow: none !important;
	text-shadow: none !important;
	color: #fff !important;
	transition: background .15s !important;
}

.wp-core-ui .button-primary:hover,
.wp-core-ui .button-primary:focus {
	background: #1E40AF !important;
	border-color: #1E40AF !important;
	box-shadow: none !important;
}

.wp-core-ui .button-primary:focus {
	box-shadow: 0 0 0 3px rgba(37, 99, 235, .25) !important;
}

/* ─── Remember me checkbox ────────────────────────────────────────────────── */
#rememberme {
	accent-color: #2563EB;
}

/* ─── Hide WordPress footer nav links ────────────────────────────────────── */
#nav,
#backtoblog {
	display: none !important;
}

/* ─── Error / message boxes ───────────────────────────────────────────────── */
#login_error,
.message {
	border-radius: 8px !important;
	border-left: none !important;
	box-shadow: none !important;
}

#login_error {
	background: #FEF2F2 !important;
	border: 1px solid #FCA5A5 !important;
	color: #DC2626 !important;
}

.message {
	background: #EFF6FF !important;
	border: 1px solid #BFDBFE !important;
	color: #1D4ED8 !important;
}
