/* -------------------------------------------------------------- 
   
   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: normal; }

/*

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


input.text, input.title   { width: 300px; margin:0.5em 0.5em 0.5em 0; }
input.text, input.title   { border:1px solid #bbb; background:#FCFCFC; padding:5px; }
input.text:focus,
input.title:focus         { border:1px solid #999; background:#fff; }
input.title               { font-size:1.5em; }


textarea            { width: 400px; height: 250px; margin:0.5em 0.5em 0.5em 0; }
textarea            { border:1px solid #bbb; background:#eee; padding:5px; }
textarea:focus      { border:1px solid #999; background:#fff; }


select              { border:1px solid #ccc; background:#FCFCFC; width:200px; }
select:focus        { border:1px solid #999; background:#fff; }

*/

/* Success, error & notice boxes for messages and errors. */

#flash_messages {
	position:absolute;
	top:100px;
	left:100px;
	color:#fff;
	font-size:4em;
}

.flash_error,
.flash_notice, 
.flash_success { 
  padding: 15px; 
  margin-bottom: 1em; 
  border: 2px solid #ddd;
  font-family:Verdana;
  font-size: 15px;
  line-height:20px; }

.flash_error      { background: #FBE3E4; color: #D12F19; border-color: #FBC2C4; }
.flash_notice     { background: #FFF6BF; color: #817134; border-color: #FFD324; }
.flash_success    { background: #E6EFC2; color: #529214; border-color: #C6D880; }
.flash_error a    { color: #D12F19; }
.flash_notice a   { color: #817134; }
.flash_success a  { color: #529214; }
#page .flash_error ul { margin:0; padding:0; }


div.error{
  border: 2px solid #ddd;
  font-family:Verdana;
  font-size: 15px;
  line-height:20px;
  padding:15px;
  background: #FBE3E4; 
  color: #D12F19; 
  border-color: #FBC2C4;
  margin-bottom:20px; }

div.error h2{
  margin:5px 0px !important;
  padding:0;
}

div.error li{
  list-style-type:none;
  margin-left:10px;
}

/* Flash Errors are way to big */
.flash_error h2 {
    font-size:16px;
    margin:4px !important;
}
.flash_error li {
    margin-left:20px;
}