body {
	font-family: 'Roboto', sans-serif;
	color: #212529;
}

main {
	width: 100%;
	max-width: 500px;
	margin: auto;
}

h1 {
	font-size: 3rem;
	width: 100%;
	padding-bottom: 0.25rem;
	border-bottom: 1px solid rgb(33, 37, 41, 0.25);
}

form {
	width: 100%;
}

label {
	display: inline-block;
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
}

input {
	margin-bottom: 2rem;
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 0.375rem 0.75rem;
	font-size: 1.5rem;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	transition:
		border-color 0.15s ease-in-out,
		box-shadow 0.15s ease-in-out;
}

input:focus {
	border-color: #80bdff;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

button {
	margin-bottom: 2rem;
	background-color: #005cbb;
	color: #fff;
	display: inline-block;
	user-select: none;
	border: 1px solid transparent;
	padding: 0.375rem 0.75rem;
	font-size: 1.5rem;
	line-height: 1.5;
	border-radius: 1rem;
	transition:
		background-color 0.15s ease-in-out,
		border-color 0.15s ease-in-out,
		box-shadow 0.15s ease-in-out;
}

button:hover {
	cursor: pointer;
	background-color: #225c96;
}

button:focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

#errorBox {
	color: #721c24;
	background-color: #f8d7da;
	padding: 1rem;
	border-radius: 0.25rem;
}

#errorBox p {
	margin: 0;
	font-size: 1.5rem;
}
