*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#page-wrapper {
  width: 640px;
  background: #FFFFFF;
  padding: 1em;
  margin: 1em auto;
  border-top: 5px solid #69c773;
  box-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

h1 {
  margin-top: 0;
}

.field {
  margin: 1em 0;
}

label {
  display: block;
  margin-bottom: 0.5em;
  color: #1c1340;
   font-family: "Poppins SemiBold", "Poppins Medium";
}

input {
  width: 70%;
  padding: 0.5em 0.5em;
  font-size: 1.2em;
  border-radius: 3px;
  border: 1px solid #D9D9D9;
}

textarea {
  width: 70%;
  height: 200px;
  padding: 0.5em 0.5em;
  font-size: 1.2em;
  border-radius: 3px;
  border: 1px solid #D9D9D9;
  background:#FBFBFB;
}

input#name {
    color: #746e8c;
	font-weight:300;
	font-family: bitter;
	font-size: 15px;
	background:#FBFBFB;
}

input#email {
    color: #746e8c;
	font-weight:300;
	font-family: bitter;
	font-size: 15px;
	background:#FBFBFB;
}

input#onderwerp {
    color: #746e8c;
	font-weight:300;
	font-family: bitter;
	font-size: 15px;
	background:#FBFBFB;
}

textarea#message {
    color: #746e8c;
	font-weight:300;
	font-family: bitter;
	font-size: 15px;
	background:#FBFBFB;
}

button {
  display: inline-block;
  border: none;
  font-size: 0.9rem;
  padding: 0.5rem 0.8em;
  background: rgba(109, 133, 126, 0.1);
  color: #333;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  width: 20%;
  text-align: center;
	-webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
	 font-family: "Poppins SemiBold", "Poppins Medium"; 
}

button:hover, button:focus {
  background: rgba(109, 133, 126, 0.26);
  cursor: pointer;
}

button:active {
  opacity: 1;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1) inset;
}

.success {
 font-family: 'Source Sans Pro', sans-serif;	font-size: 15px;
  padding: 1em;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #468847;
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}

.error {
  padding: 1em;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid rgba(185, 74, 72, 0.3);
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}