html {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	height: 100%;
	font-family: "Graphik", sans-serif;
}

h1 {
	text-align: center;
	margin: 17px;
}

button{
	background: none;
	border: none;
	outline: none;
	padding: 0px 32px;
	height: 40px;
	color: #fff;
	box-shadow: 0 4px 12px rgba(30, 77, 255, .2);
	border-radius: 8px;
	cursor: pointer;
	font-size: 16px;
	line-height: 20px;
	transition: all 0.1s ease-in-out;
	width: 100%;
}

button:active{
	transform: translate(3px, 3px);
}

button.blue{
	background-color: #1e4dff;
}
button.blue:hover{
	background-color: #4f73ff;
}
button.blue:active{
	background-color: #183ecc;
}

input{
	width: 95%;
	padding: 6px;
	margin-bottom: 10px;
	font-size: 16px;
	border: 1px solid #cecece;
}

#wrapper{
	width: 300px;
	position: relative;
}

div.error {
	margin-bottom: 7px;
	text-align: left;
	color: red;
	white-space: nowrap;
}