/* -------------------------------------------------------------- 
   
   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
   
-------------------------------------------------------------- */

form p      { clear:both; border-bottom:0px dotted #999; padding:0 0 2px 0; margin:0 0 2px 0; }
label       { font-weight: bold; margin:0 8px 2px 0; text-align:left; display:block; }
/* span  { color:#c00; } */
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, input.title, textarea, select { margin-bottom:5px; border:1px solid #bbb; }

input:focus, input.title:focus, textarea:focus, select:focus { border:1px solid #666; }

input.title               { width: 138px; padding:0px; }
input.title, input.seccode{  }
input.seccode							{ width: 50px; padding:0px; }
input.submit							{ margin-top: 5px;}
textarea                  { width: 100px; height: 100px; padding:0px; }


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

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

.error      { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; padding:5px; }
.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success    { background: #e6f0f5; color: #264409; border-color: #c0dde9; padding:5px; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }

/* Carrinho de Compras
-------------------------------------------------------------- */
.carrinhocompras input{ background: #0ba126; color:#fff; }

