
/* remove standard-styles */
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border:none;
  border-radius: 0;
  font-size: 1em;
  width: 100%
} 

input {
 width: calc(80% + 35px);
}

textarea {
 width: calc(80% + 35px);
 height: 200px;
}

input,
textarea {
 font-family: Lato, sans-serif;
 font-size: 14px;
 background-color: #ffffff;
 border: 1px solid #173b7f;
 margin: 5px;
 padding: 10px;
}

input[type=checkbox] {
 -webkit-appearance: none;
 -moz-appearance: none;
 appearance: none;
}

input[type=checkbox] {
 content:' ';
 display:inline-block;
 position: relative;
 float: left; 
 width: 1px;
 height: 1px;
 border: 1px solid  #173b7f;
 background: white;
 margin-right: 10px;
 box-shadow: inset 0 1px 1px 0 rgba(0,0,0,.1);
}

input[type=checkbox]:checked {
  background-color: #173b7f;
  box-shadow: inset 0 0 0 2px white;
}

input[type=submit] {
 text-align: center;
 margin-left: 25%;
 width: 50%;
}

input[type=submit]:hover {
 background-color: #173b7f;
 color: #ffffff;
 -o-transition:.5s;
 -ms-transition:.5s;
 -moz-transition:.5s;
 -webkit-transition:.5s;
 transition:.5s;
}

.contentBox span.inputCheck {
 display: none;
}