/*
   watch.cz layout
   (c) 2011 Adam Bísek. All rights reserved.
   http://www.watch.cz
*/

form .alert,
form span.required{
      color: red;
}

/********** Fieldsets *************/   
form fieldset{
      border: 1px solid #8D8D83;
      border-radius: 5px; 
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      margin-bottom: 5px;
      padding-bottom: 0.5em;
      padding-left: 0.5em;
}
      form fieldset legend{
            margin-left: 10px;
            color: #6B6B67;
            font-size: 120%;
      }
      
form input, 
form textarea,
form select{
      border: 1px solid #9F9F9F;
      text-align: left;
}
form input:focus,
form textarea:focus,
form select:focus{
      background: white;
}
form table tr th{
      padding-right: 1.5em;
      text-align: left;
}

/********** Error list *************/
form ul.error{
  margin:0;
  padding:0;
}
form ul.error li{
  display: block;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background: #EF3B46;
  color: white;
  margin: 0;
  padding: 0.3em;
  margin-bottom: 0.3em;
}

/**********Individual styling *************/
form input.longer,
form textarea.longer{
      width:230px;
}
form input.long,
form textarea.long{
      width:300px;
}

      
      