@charset 'UTF-8';

* {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	font-size: 100%;
	font-weight: normal;
	font-family: system-ui;
	text-decoration: none;
	background: none;
	color: #12100B;
	box-sizing: border-box;
	transition: all ease .3s;
}
body {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background-color: #333;
}
form {
	padding: 40px;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 1px 1px 3px 0 #333;
	min-width: 320px;
}
form > figure {
	margin-bottom: 8px;
}
form > h1 {
	margin-bottom: 16px;
	text-align: center;
}
form > figure > img {
	display: block;
	width: 200px;
	margin: auto;
}
form > dl {
	margin-bottom: 40px;
}
form > dl > dt {
	font-size: 80%;
	font-weight: bold;
	color: #36a;
}
form > dl > dd {
	margin-bottom: 16px;
}
form > dl > dd > input {
	border: 1px solid #ccc;
	width: 100%;
	padding: 4px 8px;
	border-radius: 5px;
	background-color: #fafafa;
}
form > dl > dd > input:focus {
	background-color: #fff;
	border-color: #40768c;
}
form > button {
	background-color: #12100B;
	color: #fff;
	width: 100%;
	padding: 8px 0;
	border-radius: 100px;
	cursor: pointer;
}
form > button:hover {
	opacity: .9;
}
.error {
	color: #f55;
}