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

form .button {
	margin-bottom: 0;
}

.field {
  margin: 0 0 0.9375rem 0;
  position: relative;
}

.field:last-of-type {
  margin-bottom: 0;
}

.field span {
	background: rgba(157,189,198,0.8);
    position: absolute;
    z-index: 30;
    height: 100%;
    width: 35px;
}

.field span svg {
	position: relative;
	top: 20px;
	left: 50%;
	transform: translate(-50%,-50%);
}

.field span.email svg {
	top: 15px;
}

label {
  display: block;
  margin-top: 2em;
  margin-bottom: 0.5em;
  color: #999999;
}

input {
  width: 100%;
  padding: 0.5em 0.5em;
  font-size: 1.2em;
  border-radius: 3px;
}

textarea {
  width: 100%;
  height: 200px;
  padding: 0.5em 0.5em;
  font-size: 1.2em;
  border-radius: 3px;
}

.success {
  padding: 1em 0;
  margin-bottom: 0.75rem;
  color: #468847;
}

.error {
  padding: 1em 0;
  margin-bottom: 0.75rem;
  color: #b94a48;
}

#contact form {
	background: rgba(157,189,198,0.4);
	padding: 0.9375rem;
	margin-bottom: 2rem;
	border: none;
	border-radius: 3px;
 }
 
#contact input[type="text"], #contact input[type="email"], #contact textarea {
	background-color: rgba(255, 255, 255, 0.5);
	border: none;
	border-radius: 3px;
	font-family: Poppins;
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
	height: 40px;
	padding-left: 40px;
 }
 
 #contact textarea {
 	height: 250px;
 }
 
@media print, screen and (min-width: 40em) {
#contact input[type="text"], #contact input[type="email"], #contact textarea {
	font-size: 16px;
 }
 
 #contact textarea {
 	height: 300px;
 }

}

 
#contact input[type="text"]:focus, #contact input[type="email"]:focus, #contact textarea:focus {
	background-color: #ffffff;
	-webkit-transition: background-color .3s ease-out;
	-moz-transition: background-color .3s ease-out;
	-o-transition: background-color .3s ease-out;
	transition: background-color .3s ease-out;
 }
 
input[type="submit"] {
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0;
	border-radius: 3px;
	background: transparent;
	line-height: 1;
	background-color: #FF3D2E;
	color: #0a0a0a;
	font-family: PoppinsSemiBold;
	text-transform: uppercase;
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 1rem 0;
	padding: 0.85em 1em;
	-webkit-appearance: none;
	border: 1px solid transparent;
	border-radius: 3px;
	transition: background-color 0.25s ease-out, color 0.25s ease-out;
	font-size: 0.9rem;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	background-color: #FF3D2E;
	color: #ffffff;
 }
 
 input::placeholder {
  font-family: Poppins;
  font-weight: normal;
  font-style: normal;
  color: #ccc;
}
 