body{
  background: #F0FFF0;
}
form {
  width: 201px;
  padding: 20px;
  margin:150px auto;
  border: 2px solid #FFFFFF;
  background:url(categories-back.gif) transparent;
 
  /*** Rounded Corners ***/
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
 
  /*** Shadow behind the box ***/
  -moz-box-shadow:0px -5px 300px #FFFFFF;
  -webkit-box-shadow:0px -5px 300px #FFFFFF;
 
  /*** Background Gradient - 2 declarations one for Firefox and one for Webkit ***/
  background:-moz-linear-gradient(19% 75% 90deg,#1E90FF, #00BFFF);
  background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(#963AD6), to(#1E90FF));
}
input {
  width: 200px;
  padding: 6px;
  margin-bottom: 10px;
  border-top: 1px solid #1E90FF;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 0px;
  background: #fff;
 
  /*** Transition Selectors - What properties to animate and how long ***/
  -webkit-transition-property: -webkit-box-shadow, background;
  -webkit-transition-duration: 0.25s;
 
  /*** Adding a small shadow ***/
  -moz-box-shadow: 0px 0px 2px #000;
  -webkit-box-shadow: 0px 0px 2px #000;
}
input:hover {
  -webkit-box-shadow: 0px 0px 4px #000;
  background: #BA55D3;
}
input.submit {
  width: 100px;
  color: #fff;
  text-transform: uppercase;
  text-shadow: #000 1px 1px;
  border-top: 1px solid #1E90FF;
  margin-top: 10px;
  /*** Adding CSS3 Gradients ***/
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1E90FF), to(#781bb9));
  background: -moz-linear-gradient(19% 75% 90deg,#1E90FF, #90EE90);
}
input.submit:hover {
  -webkit-box-shadow: 0px 0px 2px #000;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1E90FF), to(#1E90FF));
  background:  -moz-linear-gradient(19% 75% 90deg,#1E90FF, #1E90FF);
}
input.submit:active {
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#781bb9), to(#90EE90));
  background:  -moz-linear-gradient(19% 75% 90deg,#90EE90, #781bb9);
}
label {
  font-size: 12px;
  font-family: arial, sans-serif;
  list-style-type: none;
  color: #fff;
  text-shadow: #000 1px 1px;
  margin-bottom: 5px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}