
html {
  border-top: 40px solid #444444;
  font-family: Arial;
  font-size:13px;
  font-weight: bold;
  background-image: url("images/white_carbon.png");
}

#login{
  width:200px;
  padding: 20px 20px 25px;
  margin:100px auto;
  border-radius: 3px;
}

#login .submit_wrapper{
  box-shadow:none;
  margin:0;
  border-radius:0;
}

#login label{
  display:block;
  margin-bottom:5px;
  padding:0 5px;
  color:#444444;
}

#login input[type="text"], #login input[type="password"]{
  margin-bottom:10px;
  width:100%;
  padding:5px;
  border-radius: 5px;
  border:1px solid rgba(0,0,0, 0.2);
  line-height: 18px;
  margin-bottom: 20px;
  width: 100%;
  background-color: #fff;

  outline:none;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
}

#login input[type="text"]:focus, #login input[type="password"]:focus{
  box-shadow: 0 0 3px rgba(56, 180, 200, 1);
  -webkit-box-shadow: 0 0 3px rgba(56, 180, 200, 1);
  -moz-box-shadow: 0 0 3px rgba(56, 180, 200, 1);
}

#login .error{
  background-color:pink;
  color:darkRed;
  margin-bottom:10px;
  padding:10px;
  border-radius:5px;
}

input[type="submit"]{
  padding:5px;
  border:none;
  color:#fff;
  border-radius:5px;

  line-height: 25px;
  margin-top: 10px;
  width: 100%;

  background-color: #7BA507;
  background-image: -moz-linear-gradient(center top , #9ACE0D, #7BA507);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9ACE0D', endColorstr='#7BA507');
  background: -webkit-gradient(linear, left top, left bottom, from(#9ACE0D), to(#7BA507));
  background-repeat: repeat-x;
  border:1px solid #999;
  color: #FFFFFF !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .1);
  font-weight: bold;
}

input[type="submit"]:hover{
  background-image:none;
  background-color: #7BA507;
}

.logo{
  margin:0 40px 30px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, .2);
  -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, .2);
  -moz-box-shadow: 2px 2px 3px rgba(0, 0, 0, .2);
  width:113px;
  text-align: center;
}

ol.instructions {
  font-weight:normal;
  font-size:15px;
  margin-left:0;
  padding-left:20px;
}
ol.instructions li {
  margin-bottom:7px;
}