/* -------------------------------------------------------------- 
   
   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms
  
-------------------------------------------------------------- */

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

/* Form elements */
label               { font-weight: bold; }

input.text          { width: 250px; } /* Use .text on inputs with type="text" for proper styling. */
textarea            { width: 350px; height: 250px; }
input.text,
textarea            { border:1px solid #bbb; background:#eee; padding:5px; }
input.text:focus,
textarea:focus      { border:1px solid #999; background:#fff; }
input, textarea     { margin:0.5em 0; }


/* Success, error & notice boxes for messages and errors. */
.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }
.error      { background: #FBE3E4; color: #D12F19; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; color: #817134; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #529214; border-color: #C6D880; }
.error a    { color: #D12F19; }
.notice a   { color: #817134; }
.success a  { color: #529214; }
