form { 
	margin: 20px auto;
	padding: 15px;
	border: 2px solid #eee;	}

form >*:not(input[type="submit"]) {
	width: 100%;
	margin-bottom: 3%;
}

/* ! – inputs – */

input, 
textarea,
.inputfx {
	
		border-radius: 0px;
	-moz-border-radius: 0px;
	 -ms-border-radius: 0px;
	  -o-border-radius: 0px;
  -webkit-border-radius: 0px;
  
  display: block;
  -webkit-appearance: none;
  border: 2px solid #ededed;
  padding: 4px 6px;
  
  width: 100%;
  margin: 0;
  /* box-shadow: inset 0px 2px 0px #c6c6c6; */
  
}
.inputfx { 
margin-top: 32px;
width: auto;
margin-bottom: 30px !important;}

input:focus, 
textarea:focus { outline: none;
	border-color:#174266; }

textarea {
	resize: none;
	min-height: ;
}

input[type="password"] {}
input[type="search"] {}
input[type="email"] {}
input[type="number"] {}

input[type="checkbox"],
input[type="radio"] {
	-webkit-appearance: checkbox;
	display: inline;
	width: auto;
}

/* ! – labels – */

form label {}
input + label {}

.inlinelabel { 
	color: darkgrey;
	text-align: right;
	margin-top: 1%;
}

.forms_wrapper textarea {
	height: 100px;
}


/* ! – select – */

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 100%;
	
		border-radius: 0px;
	-moz-border-radius: 0px;
	 -ms-border-radius: 0px;
	  -o-border-radius: 0px;
  -webkit-border-radius: 0px;
  
  outline: none;
  border: 1px solid #000000;
  
  line-height: 1.5;
  padding: 4px 6px;
  padding-right: 17px;
  
  background: url('select_v1-1.gif') no-repeat 100% center #ffffff;
  }
  	
  	select:-moz-focusring {
     color: transparent;
     text-shadow: 0 0 0 #000;
	}
  	
	select:focus, option:focus { outline: none; }
	select:active { 
	outline: none;
	background: url('select_v1-2.gif') no-repeat 100% center #ffffff; 
	}



select option {}
