input{
	background-color:#204E8A;
	color:#FFF8E7;
	border:none;
}
input:focus{
	background-color:white;
	color:black;
	border:thin solid grey;
}
input[type=text], input[type=email], input[type=password]{
	height:30px;
	width:150px;
}
input[type=number]{
	height:30px;
	width:70px;
}
input[type=date],input[type=time]{
	height:30px;
}
input[type=checkbox]{
	height:30px;
	width:30px;
}
select{
	height:30px;
	width:150px;
	background-color:#204E8A;
	color:#FFF8E7;
	border:none;
}
textarea{
	height:70px;
	width:100%;
	background-color:#204E8A;
	color:#FFF8E7;
	border:none;
}
textarea:focus{
	background-color:white;
	color:black;
	border:thin solid grey;
}