:root {
	color-scheme: light;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
	align-items: center;
	background: #f3f5f7;
	display: flex;
	justify-content: center;
	margin: 0;
	min-height: 100vh;
	padding: 1rem;
}

.auth-card {
	background: #fff;
	border-radius: 0.75rem;
	box-shadow: 0 0.75rem 2rem rgb(0 0 0 / 12%);
	max-width: 30rem;
	padding: 2rem;
	text-align: center;
	width: 100%;
}

.auth-button {
	background: #0067b8;
	border-radius: 0.35rem;
	color: #fff;
	display: inline-block;
	font-weight: 600;
	margin-top: 0.75rem;
	padding: 0.75rem 1rem;
	text-decoration: none;
}

.auth-fallback {
	display: none;
}

.auth-fallback-visible {
	display: inline-block;
}

.auth-button:focus,
.auth-button:hover {
	background: #005a9e;
}
