/* -------------------------------------------------------------- 
   
   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.5em 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; }
input.title   { font-size:1.5em; }
textarea      { width: 400px; height: 250px; padding:5px; }
select        { width:200px; }


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

.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }

.error      { background: #FBE3E4; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; border-color: #FFD324; }
.success    { background: #E6EFC2; border-color: #C6D880; }

.error, .error a      { color: #D12F19; }
.notice, .notice a    { color: #817134; }
.notice, .success a   { color: #529214; }
label       { display: block; }
fieldset    { padding:1em; background: #f6f6f9; }
legend      { font-size:1.1em; border: 1px solid #ccc; background: #fff; color: #333; padding: 0.2em 1em 0.3em 1em; }

textarea    { width: 720px; }

input.text, 
input.title   { padding: 2px 5px; width: auto; }

input.full-w  { width: 720px; }

fieldset p,
fieldset .block { margin-bottom: 0.75em }   

fieldset h1,
fieldset h2,
fieldset h3,
fieldset h4,
fieldset h5,
fieldset h6 { margin-bottom: 0.25em }   

fieldset .description {
  color: #999;
  font-size: 0.9em;
  margin-top: -0.75em;
  margin-bottom: 1.5em;
  padding: 0.5em 1em;
  border: 2px solid #ddd;
  background-color: #fff;
}

.date-select select { width: auto; }
