.btpp-staff-login-card {
	display: grid;
	grid-template-columns: minmax(240px, 0.85fr) minmax(300px, 1.15fr);
	width: min(100%, 840px);
	max-width: 100%;
	margin: 2rem auto;
	overflow: hidden;
	color: #1b1c1e;
	background: #ffffff;
	border: 1px solid #dedbd6;
	border-radius: 24px;
	box-shadow: 0 16px 36px rgb(24 19 16 / 10%);
	font-family: inherit;
}

.btpp-staff-login-card,
.btpp-staff-login-card * {
	box-sizing: border-box;
}

.btpp-staff-login-card__accent,
.btpp-staff-login-card__form-panel {
	padding: clamp(2rem, 5vw, 3.5rem);
}

.btpp-staff-login-card__accent {
	display: flex;
	justify-content: center;
	flex-direction: column;
	color: #ffffff;
	background: #161719;
	border-left: 7px solid #720026;
}

.btpp-staff-login-card h1,
.btpp-staff-login-card p {
	margin-top: 0;
}

.btpp-staff-login-card__accent h1 {
	color: #ffffff;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.btpp-staff-login-card__eyebrow {
	color: #d6d7da;
	font-size: 0.78rem;
	font-weight: 750;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.btpp-staff-login-form {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.btpp-staff-login-field {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

/*
 * Stated explicitly. The card is white and the storefront theme is dark, so an
 * inherited colour made these labels white on white — the fields appeared to
 * have no labels at all.
 */
.btpp-staff-login-field label {
	color: #1b1c1e;
	font-weight: 700;
}

.btpp-staff-login-field input {
	width: 100%;
	min-height: 50px;
	padding: 0.75rem 0.9rem;
	color: #1b1c1e;
	background: #ffffff;
	border: 1px solid #898b90;
	border-radius: 10px;
	font: inherit;
}

.btpp-staff-login-field input:focus-visible,
.btpp-staff-login-button:focus-visible,
.btpp-staff-login-forgot:focus-visible {
	outline: 3px solid #720026;
	outline-offset: 3px;
}

.btpp-staff-login-button {
	display: inline-flex;
	min-height: 50px;
	padding: 0.8rem 1.25rem;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	background: #720026;
	border: 1px solid #720026;
	border-radius: 999px;
	font: inherit;
	font-weight: 800;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}

.btpp-staff-login-button:hover {
	color: #ffffff;
	background: #5e0020;
	border-color: #5e0020;
}

.btpp-staff-login-forgot,
.btpp-staff-login-forgot:visited {
	align-self: flex-start;
	color: #1b1c1e;
	font-weight: 650;
}

.btpp-staff-login-forgot:hover,
.btpp-staff-login-forgot:focus {
	color: #720026;
	text-decoration: underline;
}

.btpp-staff-login-notice {
	margin-bottom: 1.2rem;
	padding: 0.85rem 1rem;
	color: #681c27;
	background: #f8e7ea;
	border-left: 4px solid #720026;
	border-radius: 8px;
}

.btpp-staff-login-card--continue {
	display: block;
	padding: clamp(2rem, 5vw, 3.5rem);
	text-align: center;
}

.btpp-staff-login-card--continue .btpp-staff-login-button {
	margin-top: 0.75rem;
}

@media (max-width: 700px) {
	.btpp-staff-login-card {
		grid-template-columns: 1fr;
		border-radius: 18px;
	}

	.btpp-staff-login-card__accent {
		border-bottom: 7px solid #720026;
		border-left: 0;
	}
}
