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

*{ padding: 0; margin: 0; outline: none; -webkit-transition: all 100ms ease; -moz-transition: all 100ms ease; -ms-transition: all 100ms ease; -o-transition: all 100ms ease; transition: all 100ms ease;}

form{  width: 300px; margin: auto; font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;}


form input,
form select,
form textarea{ width: 100%; padding: 5px;}



form label { width: 100%; padding: 5px; color: #fff;}

form input:focus,
form select:focus,
form textarea:focus{ background-color:#eee;}

form textarea{ resize: none; height: 100px}
form select{ width: 104%}

input[type="submit"]{ width: 30%; padding: 8px;}
input[type="submit"]:hover{ cursor: pointer; background: #CCC}
input[type="submit"]:active{ background:#FF0;}

