/* -------------------------------------------------------------- 
   
   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms
   
   Usage:
   * For text fields, use class .title or .text
   
-------------------------------------------------------------- */
body		{color:white;font-family:Arial, Helvetica, sans-serif;font-size:12px;background-color:rgb(180,129,20);margin:0;padding:0}
fieldset    {padding:10px;margin:0;border:none}
legend      {font-weight:bold;}
/* Form fields
-------------------------------------------------------------- */
input.text, input.title,
textarea, select {
  margin:0;
  border:1px solid #bbb;
}
input.text:focus, input.title:focus,
textarea:focus, select:focus {
  border:1px solid #666;
}
input.text,input.title   { width: 300px; padding:5px;margin-bottom:0 }
textarea      { width: 390px; height: 100px; padding:5px; }
small {font-size:11px}
/* Success, notice and error boxes
-------------------------------------------------------------- */
.error,.notice,.success{padding:0.5em;width:50%}
.error      { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.notice     { background: black; color: white; }
.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }
