@import url(/cdn/fonts/StyleScan.css);
body {
	background: #000;
	color: #ccc;
	margin: 0;
	height: 100vh;
	height: -webkit-fill-available;
}
a {
	color: #fff;
}
#sheet {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #222;
	border-radius: 3rem;
	padding: 2rem 2rem 1rem;
	min-width: 32ch;
	max-width: 32ch;
}
#note {
	text-align: center;
	padding: 0.5rem;
	color: #fff;
	border-radius: 0.3rem;
}
#note.error {
	background: #822;
}
#note.message {
	background: #a60;
}
.fade {
	transition: opacity 1s ease-out;
	opacity: 0;
}
header {
	text-align: center;
}
form {
	display: flex;
	flex-direction: column;
}
p {
	width: auto;
}
label {
	margin: 0.5rem 0;	
}
label a.forgot {
	float: right;
	font-size: 80%;
}
input {
	box-sizing: border-box;
	display: block;
	padding: 0.5rem;
	border-radius: 0.3rem;
	border: 0;
	outline: 0;
	overflow: visible;
	font-size: 1rem;
	margin-bottom: 1rem;
	background: #ccc;
}
input.field:focus {
	box-shadow: 0 0 0 0.2rem #888;
	background: #fff;
}
input.button {
	margin-top: 1rem;
	color: #fff;
	-moz-appearance: none;
	-webkit-appearance: none;
}
input.button.login {
	background: #3a3;
}
input.button.reset {
	background: #a60;
}
input.button:active {
	transform: scale(0.95);
}
input.button[disabled] {
	color: #ccc;
	background: #666;
}
footer {
	text-align: center;
}