/* ZERANDO ATRIBUTOS EM TODOS OS SELETORES */
* {
     margin: 0;
     padding: 0;
}

/* LABEL */
label {
     display: block; 
     margin: 5px 0 5px 0; 
}

/* FORMATANDO OS IDENTIFICADORES DOS CAMPOS */
label span {
     display: block;
     width: 380px;
     margin-top: 2px;
     float: center;
}

/* FORMATANDO INPUT, SELECT E TEXTAREA */
input, textarea, select {
     color: #4682b4;
     width: 400px;
     border: solid 1px #007D43;
}

/* SELECT COM LARGURA AUTOMÁTICA */
select {
     width: auto;
}

textarea {
     height:200px;

     overflow: auto;
}

/* FORMATAÇÃO DO BOTÃO */
button {
     background: #FFCC66;
     color: #000000;
     font-weight: regular;
     margin-top: 7px;
     border: solid 1px #FFCC66;
}