label { 
	font-weight: bold; 
	width: 150px;
}

input[type="text"],
input[type="password"],
input[type="button"],
textarea,
button{
	-webkit-border-radius: 0 0 0 0;
	border-radius: 0 0 0 0;
	-webkit-appearance: none;
	font-family: 'Nexa W01 Regular';
	/* removes  standard styling on iphones and ipads */
}

input[type="checkbox"]{
  -webkit-appearance: normal;
}

input[type="text"], input[type="password"] {
/*	padding: 5px;
	border: 1px solid #CCC;
	margin: 5px 0;
	width: 250px;*/
}

select {
	padding: 5px;
	border: 1px solid #CCC;
	margin: 5px 0;
	width: 250px;
}

input[type="submit"], input[type="button"] {
	padding: 5px;
	border: 1px solid #CCC;
	cursor: pointer;
}

textarea { 
	width: 390px;
	min-width:390px;
	max-width: 390px;
	height: 250px; 
	min-height: 250px;
	max-height: 250px;
	padding:5px;
	resize: none;
	overflow-y: auto;
	font-family: 'Nexa W01 Regular';
}

@media all and (max-width:680px){
  textarea{
    min-height: 125px;
    max-height: 125px;
    height: 125px;
  }
}

::-webkit-input-placeholder { /* placeholder in inputs @ WebKit browsers */
    color: #d4dfe6;
    font-family: 'Nexa W01 Regular';
}
:-moz-placeholder { /* placeholder in inputs @ Mozilla Firefox 4 to 18 */
   color: #d4dfe6;
   opacity: 1;
   font-family: 'Nexa W01 Regular';
}
::-moz-placeholder { /* placeholder in inputs @ Mozilla Firefox 19+ */
   color: #d4dfe6;
   opacity: 1;
   font-family: 'Nexa W01 Regular';
}
:-ms-input-placeholder { /* placeholder in inputs @ Internet Explorer 10+ */
   color: #d4dfe6;
   font-family: 'Nexa W01 Regular';
}