h1{
	text-align: center;
}
form{
	max-width: 400px;
	width: 100%;
	margin: 0 auto;
}
input{
	box-sizing: border-box;
    display: block;
    border: none;
    box-shadow: inset 0px 0px 4px 1px rgba(0, 0, 0, 0.11);
    padding: 10px 20px;
    width: 100%;
    margin: 10px 0;
	outline: none;
}
input[type="submit"]{
	background: red;
    border: none;
    box-shadow: 0px 2px 0 1px #C50909;
    border-radius: 5px;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    width: 200px;
	cursor: pointer;
	transition: 0.3s;
}
input[type="submit"]:hover{
	background: black;
	box-shadow: 0px 2px 0 1px black;
}