body {
	background: #F7F7F7;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	flex-direction: column;
}

form {
	width: 500px;
	padding: 30px;
	background: #00A6E2;
	border-radius: 15px;
	box-shadow: 6px 7px 5px  #333;
}

h2 {
	text-align: center;
	margin-bottom: 40px;
    font-family: "Roboto Condensed", sans-serif;
	color: #fff;
}

input {
	display: block;
	width: 95%;
	padding: 10px;
	margin: 10px auto;
	border-radius: 5px;
}
label {
	color: #fff;
	font-size: 18px;
	padding: 10px;
    font-weight: bold;
    font-family: "Roboto Condensed", sans-serif;
}

button {
	float: right;
	background: #333;
	padding: 10px 15px;
	color: #fff;
	border-radius: 5px;
	margin-right: 10px;
	border: none;
    font-family: "Roboto Condensed", sans-serif;
    cursor: pointer;
}
button:hover{
    background-color: #0089bb;
    border-radius: 5px;
	border: 1px solid #444343;
}
.error {
   color: #be1b19;
   width: 95%;
   margin: 20px auto;
   font-family: "Roboto Condensed", sans-serif;
   font-size: large;
}
