* {
	box-sizing: border-box;
	font-weight: 300;
}

body {
	background: #f9f9f9;
	font-family: ministry, sans-serif;
	margin:40px;
}

h1, h2 {
	font-weight: 400;
	text-transform: uppercase;
}

.logo h1 {
	text-align: center;
	font-size:40px;
	padding-bottom:40px;
}

article {
	max-width:400px;
	background: #fff;
	margin:0 auto;
	border-radius:3px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
	padding:20px;
	text-align: center;
	min-height: 500px;
}

input {
	width:calc(100% - 40px);
	margin: 10px 20px;
	padding: 15px 20px;
	font-size:20px;
	background: #e4e6e6;
	border:0;
	border-radius:3px;
	margin-top:5px;
	font-family: ministry, sans-serif;
}

input[type=submit] {
	background: #67b170;
	color:white;
	margin-top:30px;
	font-weight: 300;
	font-size:18px;
	text-transform: uppercase;
	transition:0.2s ease-in-out all;
	cursor: pointer;
}

input[type=submit]:hover {
	background: #4c9b56;
	transform:scale(1.1);
}