/* --------------------------------------------------------------

   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
   * For inline forms, use .inline (even when using columns)

-------------------------------------------------------------- */
#EmailForm .span-12.last.contactBlurb {float: left;border: 1px solid #98867E; color:#98867E;width: 100%; font-size: 1.3333em; background-color: #ffffff;margin-bottom: 1.5em;}

#EmailForm .contactBlurb h3 {font-size: 1.5em;padding: 15px;margin-bottom:0;padding-bottom:0;}
form p label       { margin-bottom:-0.25em;padding-bottom:0;font-weight: bold;clear: both;display: block; }
fieldset    {  margin: 0 0 1.5em 0; border: 1px solid #ccc; clear: both; }
legend      { font-weight: bold; font-size:1.2em; }


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

input[type=text], input[type=password],
input.text, input.title,
textarea, select {
  background-color:#E0D7D3; color: #533628; font-weight: bold; width: 100%;
  border:1px solid #bbb;
}
input[type=text]:focus, input[type=password]:focus,
input.text:focus, input.title:focus,
textarea:focus, select:focus {
  border-color:#666;
}
input#cfContact {padding: 0.5em 0 1.5em 0;font-size: 1.5em;}
input[type=text], input[type=password],
input.text, input.title,
textarea, select {
  margin:0.5em 0;
}
form .span-6 input, .span-12 input, .span-12 textarea {background-color:#E0D7D3;}
input.text,
input.title   { background-color:#E0D7D3;width: 100%; padding:5px; }
input.title   { font-size:1.5em; }
textarea      { background-color:#E0D7D3;width: 300px; height: 150px;  }

input[type=checkbox], input[type=radio],
input.checkbox, input.radio {
  position:relative; top:.25em;
}
.span-6 input.span-5 {width: 100%;}

form.inline { line-height:3; }
form.inline p { margin-bottom:0; }
form  p label {padding-left:0;}

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

.error,
.notice,
.success    { padding: 0.25em .8em; margin-bottom: 1em;  }

p.error      { color: #8a1f11; Font-weight: bold; font-size: 1.5em;margin: 0 0;  }
.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }

