/* CSS Document */

form {
	width: 80%;
	margin-left: 10%;
	text-align: center;
	}
.label {
	font-size: 20px;
	}

.field, 
select {
	margin-bottom: 20px;
	text-align: left;
	}

.field input,
.field textarea,
select {
	width: 100%;
	margin-bottom: 5px;
	font-size: 18px;
	padding: 10px 15px;
	border-radius: 5px;
	border: none;
	background-color: #efefef;
	color: #575756;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
	}

.field input[type=checkbox] {
	width: auto;
	}

button[type=submit] {
	padding: 15px;
	border: none;
	background-color: #444444;
	color: #ffffff;
	border-radius: 5px;
	font-size: 18px;
	}

button[type=submit]:hover {
	background-color: #000000;
	cursor: pointer;
	}