.fields input{
	border: none;
	background: #ededed;
	height: 40px;
	color: #12235a;
	margin-top: 10px;
	padding-left: 5px;
	width: 70%;
	float: left;
	font-weight: 400;
	font-size: 14px;
  	-webkit-transition: all 0.30s ease-in-out;
  	-moz-transition: all 0.30s ease-in-out;
  	-ms-transition: all 0.30s ease-in-out;
  	-o-transition: all 0.30s ease-in-out;
  	outline: none;
  	padding: 15px 0px 15px 3px;
  	width: 100%;

}
.fields ::-webkit-input-placeholder{
	color: #12235a !important;
	font-size: 16px;
}
.fields ::-moz-placeholder{
	color: #fff !important;
}

.fields textarea{
	border: none;
	background: #ededed;
	color: #12235a;
	margin-top: 10px;
	float: left;
	padding-left: 5px;
	font-weight: 400;
	font-size: 14px;
  	-webkit-transition: all 0.30s ease-in-out;
  	-moz-transition: all 0.30s ease-in-out;
  	-ms-transition: all 0.30s ease-in-out;
  	-o-transition: all 0.30s ease-in-out;
  	outline: none;
  	padding: 3px 0px 3px 3px;
  	width: 100%;
 }
.fields  textarea:focus, .fields  input:focus{
  background: #fff;
  border: 1px solid #12235a;
  right: 5px !important;
}
.fields .field{
	position: relative;
	min-height: 30px;
	display: table;
	width: 100%;
}
.fields  input:focus + label{
	left: 85%;
	opacity: 1.0;
}
.fields textarea:focus + label{
	left: 85%;
	opacity: 1.0;
}
.fields  label{
	position: absolute;
	color: #8A959A;
	margin-top: 15px;
	left: 5px;
	opacity: 0;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	-moz-transition: 0.5s all ease;
    -ms-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.fields input[type="submit"], input.submit{
	background: #12235a;
	height: 31px;
	margin-left: 0px;
	width: 30%;
	color: #fff;
	border: thin solid #fff;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 16px;
	margin-top: 10px;
	cursor: pointer;
	-webkit-transition: all 1s ease-in-out;
  	-moz-transition: all 1s ease-in-out;
  	-o-transition: all 1s ease-in-out;
  	transition: all 1s ease-in-out;
  	border: thin solid white;
  	-webkit-appearance: none;
  	border-radius: 0;
}
.fields input[type="submit"]:hover, input.submit:hover{
	background: #009de0;
	-webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}


