/* --------------------------------------------------------------

   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)

-------------------------------------------------------------- */

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; }


/* Form fields
-------------------------------------------------------------- */

input[type=text], input[type=password],
input.text, input.title,
textarea, select {
  background-color:#fff;
  border:1px solid #415B72;
}
input[type=text]:focus, input[type=password]:focus,
input.text:focus, input.title:focus,
textarea:focus, select:focus {
  background-color:#f6f6f6;
  border-color: #FF8602; 
}

input[type=text]:hover, input[type=password]:hover,
input.text:hover, input.title:hover,
textarea:hover, select:hover {
  background-color:#f6f6f6;
  border-color:#FF4500;
}

label,
input[type=text], input[type=password],
input.text, input.title,
textarea, select {
  margin: 0.3em 0;
	padding: 4px 5px;
}


label,
input[type=checkbox], input[type=radio],
input.checkbox, input.radio {
	padding: 2px 0px; /* o padding do label tem que descontar a borda dos outros inputs */
}

input[type=checkbox], input[type=radio],
input.checkbox, input.radio {
  margin: 0.3em 0;
	
}

input.text,
input.title   { width: 300px; padding:5px; }
input.title   { font-size:1.5em; }
textarea      { width: 390px; height: 50px; padding:5px; }

input[type=checkbox], input[type=radio],
input.checkbox, input.radio {
  position:relative; top:.25em;
}

form.inline { line-height:3; }
form.inline p { margin-bottom:0; }


/* Success, notice and error boxes
-------------------------------------------------------------- */

/* alterei o nome d error para errorbox para nao dar conflito com a classe do jquery */
.error,
.notice,
.success    { margin: 10px; padding: 5px; margin-bottom: 1em; border: 2px solid #ddd; }

.error   { background: #FBE3E4 !important; color: #8a1f11 !important; border-color: #FBC2C4 !important; }
.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; }


