@CHARSET "UTF-8";
/*
    Document   : admin/login.css
    Created on : Apr 13, 2011, 11:15:27 AM
    Author     : Medina
    Description: Login structure
*/

#loginBlock {
  display: block;
  width: 300px;
  height: 200px;
  margin: 50px auto;
  background: #FFF;
  padding: 15px;
}
fieldset {
  border: 2px solid #D0DEF1;
  border-radius: 7px;
  moz-border-radius: 7px;
  padding: 10px 20px 20px 30px;
  background: #F3F3F3;
}
fieldset legend {
  color: #1c94c4;
  font-weight: bold;
  font-size: 16px;
  border-radius: 5px;
  moz-border-radius: 5px;
  line-height: 40px;
  padding: 4px;
}
fieldset dt {
  float: left;
  clear: left;
  width: 50px;
}
fieldset dd {
  float:left;
  height: 40px;
}
form ul.errors {
  list-style: none;
}
form ul.errors li, label.error {
    display: block;
  color: #F00;
  line-height: 18px;
  font-size: 9px;
  font-style: italic;
}

#footer {
  bottom: 0;
  width: 100px;
}

input#username{
    margin-top: 10px;
    margin-bottom: 20px;
}
input#password{
    margin-left: 6px;
    margin-bottom: 20px;
}

input[type=text], input[type=password], select{
    border-radius:4px;
    -moz-border-radius:4px;
    -webkit-border-radius:4px;
    box-shadow: 1px 1px 2px #333333;
    -moz-box-shadow: 1px 1px 2px #333333;
    -webkit-box-shadow: 1px 1px 2px #333333;
    background: #f5ede6;
    /*border:1px solid #000000;*/
    height:25px !important;
    margin-top: 2px;
    margin-bottom:2px;
    border: 1px solid #CCC;
    padding-left: 2px;
}

input[type=text]:hover, textarea:hover, input[type=password]:hover,select:hover {
    background: #ffffff;
    border:1px solid #1c94c4 !important;
}
input[type=text]:focus,input[type=password]:focus, textarea:focus,select:focus{
    background: #ffffff;
    border:0px !important;
    box-shadow: 1px 1px 8px #06516f !important;
    border-radius:6px;
}
