body {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	line-height: 1.4;
}
ul, li {
	list-style: none;
	margin: 0;
	padding:  0;
}
.form {
	width: 100%;
	max-width: 500px;
	
}
li.error,
li.success,
input[type=text],
input[type=email],  
button, 
textarea {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	box-sizing: border-box;
	border-style: solid;
	border-width: 1px;
	border-radius: 4px;
	margin: 4px 0;
	padding: 6px 12px;
	width: 100%;
}
input[type=text],
input[type=email],  
button, 
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: normal;
	outline: 0;
}
input[type=email]#email {
	display: none;
}
button {
	cursor: pointer;
	width: auto;
}
textarea {
    height: 150px;
    line-height: 150%;
	overflow-x: auto;
	overflow-y: auto;
}


/* kleuren */


label {
	color: #410909;
}
.error {
	border: 1px solid #f00000;
	color: #f00000;
	padding: 10px;
	width: 100%;
	max-width: 500px;
	margin: 20px auto;
}
.success {
	border: 1px solid #fff;
	color: #0788f6;
	padding: 10px;
}
input[type=text], 
input[type=email], 
textarea {
	-moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.075);
	background-color: #ffffff;
	border-color: #cccccc;
}
input:hover, 
input:focus,
textarea:hover,
textarea:focus {
	background-color: #ffffff;
	border-color: #66afe9;
	color: #222222;
}
:focus:invalid {
   border-color: #f00000;
}
:required:focus:valid {
   border-color: #468847;
}
button {
	-moz-box-shadow: inset 0px 1px 0px 0px #ffffff;
	-webkit-box-shadow: inset 0px 1px 0px 0px #ffffff;
	box-shadow: inset 0px 1px 0px 0px #ffffff;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f9f9f9), color-stop(1, #e9e9e9));
	background: -moz-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
	background: -webkit-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
	background: -o-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
	background: -ms-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
	background: linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9',GradientType=0);
	background-color: #f9f9f9;
	border-color: #dcdcdc;
	color: #444444;
	text-shadow: 0px 1px 0px #ffffff;
}
button:hover, 
button:focus {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #e9e9e9), color-stop(1, #f9f9f9));
	background: -moz-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
	background: -webkit-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
	background: -o-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
	background: -ms-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
	background: linear-gradient(to bottom, #e9e9e9 5%, #f9f9f9 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9',GradientType=0);
	background-color: #e9e9e9;
}