input, select {
  background-color: #fff;
  border: 1px solid #4D90FE;
  padding: 1px;
  font-size: 10pt;
  font-family: Arial, Verdana;
  color: green;
  margin:4px;
}

input[type='text'], input[type='password'], textarea {
box-shadow:inset 0px 0px 3px lightblue;
-webkit-box-shadow: inset 0px 0px 3px lightblue;
}

textarea {
  background-color: #fff;
  border: 1px solid #9db4bd;
  padding: 1px;
  font-size: 10pt;
  font-family: Consolas, 'Courier New', Helvetica;
  color: green;
}

input[type='checkbox'], input[type='radio']{
  border: 0px;
  padding: 0;
  vertical-align:middle;
}

input[disabled], input[type="submit"][disabled] {
background-color: lightgray;
border: 1px solid gray;
color:gray;
}

input[type='text']:focus, input[type='password']:focus, textarea:focus, select:focus{
background-color: lightyellow;
border: 1px solid rgb(255,102,0);
box-shadow:inset 0px 0px 3px orange;
-webkit-box-shadow: inset 0px 0px 3px orange;
}

input[type='button'],input[type='reset'],input[type='submit'] {
background-color: #FCFBE9;
border:1px outset;
border-color:gray;
background:url(../images/buttonbg.gif) repeat-x left top;
text-shadow: 1px 1px 2px #FFFFFF;
color:orangered;
padding:2px;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}