form{
border: 1px solid #a8a7a7;
border-radius: 2px;
width: 350px;
height: 280px;
display: inline-block;
vertical-align: middle;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 20px 20px 20px 20px;
}

input[type=email],[type=password], select {
    width: 100%;
    padding: 8px 4px;
    margin: 3px 0;
    display: inline-block;
    border: none;
    background-color: lightgrey;
	border-left: 6px solid #DD053A;
    box-sizing: border-box;
}

button{
	width: 100%;
    background-color: #DD053A;
    color: white;
    padding: 10px 2px;
    margin: 8px 0;
    border: 1px solid #DD053A;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
	background-color: white;
    border: 2px solid #DD053A;
	color: #DD053A;
}

label{
	font-family: 'Advent Pro';font-size: 22px;
	font-size: 25px;
	color: #454645;
}

.foot{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #454645;
	position: absolute;
	bottom: 1px;
	right: 12px;
}