/* CSS Document */

input[type="text"], 
input[type="tel"], 
input[type="number"], 
input[type="email"]
 {
	width: 95%;
	font-size: 20px;
	border-radius:5px;
	-ms-border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	-khtml-border-radius:5px;
	color: #333333;
	letter-spacing: 0.1em;
	padding: 5px;

}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus, 
input[type="email"]:focus
 {
  outline:#3C0 solid thin;
}

select {
  margin: 0;
  font-size: 18px;
/*  appearance: none;*/
  box-shadow: none;
  border-radius: 2;
  width: 95%;
}

textarea {
	width: 95%;
	font-size: 20px;
}


.form_error_field {
	border: 2px solid #FF0000;
}
.form_error_txt {
	color: #FF0000;
}


input[type="submit"] {
	  border-radius:5px;
	  -ms-border-radius:5px;
	  -moz-border-radius:5px;
	  -webkit-border-radius:5px;
	  -khtml-border-radius:5px;
	  letter-spacing: 0.1em;
	  padding: 5px;
	  background-color: #F1C75F;	  
}    


/*	RESPONSIVE STYLES ---------------------------------------------------------------------*/ 
/*	---------------------------------------------------------------------------------------*/ 
/*	---------------------------------------------------------------------------------------*/ 
/*	---------------------------------------------------------------------------------------*/ 
/*	---------------------------------------------------------------------------------------*/ 


@media only screen and (min-width: 480px) and (max-width: 767px) {
	input[type="text"], 
	input[type="tel"], 
	input[type="number"], 
	input[type="email"]
	textarea {
		width: 95%;
	}
}
@media only screen and (max-width: 479px) {
	input[type="text"], 
	input[type="tel"], 
	input[type="number"], 
	input[type="email"]
	textarea {
		width: 90%;
	}
}

/*	---------------------------------------------------------------------------------------*/ 
/*	---------------------------------------------------------------------------------------*/ 
/*	---------------------------------------------------------------------------------------*/ 
/*	---------------------------------------------------------------------------------------*/ 



