@charset "utf-8";
/* CSS Document */

/* RESPONSIVE STYLE */

/* FORM INPUT STYLE */
.formInput
{
	text-transform: uppercase;
	border:solid;
	border-color:#1a497d;
	background-color:#FFF;
	border-radius:7px;
	padding:15px;
	width:40%;
}

/* FORM BUTTON SHADOW */
input[type=submit] 
{
  width: 15%;
  background-color: #1a497d;
  color: #FFF;
  font-size:16px;
  font-weight:bold;
  padding: 10px 10px;
  margin: 4px 0;
  border: none;
  border-radius: 15px;
  cursor: pointer;
}

input[type=submit]:hover 
{
  background-color: #FFF;
	-moz-box-shadow: 0 0 10px #000;
	-webkit-box-shadow: 0 0 10px #000;
	box-shadow: 0 0 10px #999;
}



@media screen and (max-width: 1024px) {

.formInput
{
	width:90%;
}
input[type=submit] 
{
  width: 30%;
}