* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	align-items: center;
	display: flex;
	min-height: 100vh;
	justify-content: center;
	width: 100%;
}

a, button {
	background: #0060bf;
	border: none;
	border-radius: 0.5em;
	color: #ffffff;
	cursor: pointer;
	display: block;
	padding: 0.75em 0.5em;
	text-align: center;
	text-decoration: none;
	width: 100%;
}

:is(a, button, button[type=submit]):focus-visible {
	outline: 2px solid #0060bf;
	outline-offset: 2px;
}

:is(a, button):hover {
	background: #004d99;
}

.auth-container {
	display: flex;
	flex-direction: column;
	gap: 1em;
	padding: 1em;
	width: 100%;
}

@media only screen and (min-width: 600px) {
	.auth-container {
		width: 600px;
	}
}
