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

#container{
	width: 80%;
	margin: auto;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#container img{
	width: 200px;
}
form{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
form h2{
	margin: 10px 0;
}
form input{
	width: 350px;
	height: 40px;
	margin-bottom: 5px;
}
form button{
	width: 350px;
	height: 40px;
	margin-bottom: 5px;
	background: #1e88e5;
	color: #fff;
	border: none;
	cursor: pointer;
}
form button:hover{
	background: #0d47a1;
}

