/* -------------------------------------------------------------- 
   
   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
   
-------------------------------------------------------------- */

label       { font-weight: bold; }
fieldset    { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
legend      { font-weight: bold; font-size:1.2em; }


/* Form fields
-------------------------------------------------------------- */

input.text, input.title,
textarea, select {
  /*margin:0.1em 0;
  border:1px solid #bbb; */
}

input.text:focus, input.title:focus,
textarea:focus, select:focus {
 /* border:1px solid #666; */
}

input.text, 
input.title   { width: 210px; padding:3px; }
input.title,select.title   { font-size:1em; }
select.title{padding:1pz}
textarea      { width: 390px; height: 50px; padding:5px; font-size:1em; font-family:arial;}

/* Success, notice and error boxes
-------------------------------------------------------------- */

.error,
.notice, 
.success    { padding: .8em; margin: 0.8em 0 1.2em; border: 2px solid #ddd; }

.error      { background: #fbe3e4; color: #bf0202; border-color: #cc3333; background-image:url('http://www.bigadda.com/storage/image/v3/layout/error.gif'); background-repeat:no-repeat; background-position:10px 5px; padding-left:45px; }
.notice     { background: #fff6bf; color: #663300; border-color: #bc7f1c; background-image:url('http://www.bigadda.com/storage/image/v3/layout/alert.gif'); background-repeat:no-repeat; background-position:10px 5px; padding-left:45px;}
.success    { background: #e6efc2; color: #336600; border-color: #669900; background-image:url('http://www.bigadda.com/storage/image/v3/layout/success.gif'); background-repeat:no-repeat; background-position:10px 5px; padding-left:45px;}
/*
.error a    { color: #8a1f11; }
.notice a   { color: #663300; }
.success a  { color: #336600; }
*/
