﻿* {
    margin: 0;
    padding: 0;
}
 
fieldset {
    border-style: none;
    border-color: inherit;
    border-width: 0;
    height: auto;
    margin-top: 5px;
}

body, input, select, textarea, button {
    font-family: 'Montserrat';
    font-size: small;
}

.pagina {
    margin-left: 10px;
    margin-top: 5px;
}

.cabecalho {
    text-align:center;
}

.grupo:before, .grupo:after {
    content: " ";
    display: table;
}
 
.grupo:after {
    clear: both;
}
 
.campo {
    margin-top: 1.5px;
}
 
.campo label {
    margin-bottom: 0;
    color: #666;
    display: block;
}

.titulo {
    margin-bottom: 0;
    color: #000;
    display: block;
}

.subtitulo {
    margin-bottom: 0;
    color: #666;
    display: block;
}

.campoLabel {
    display: block;
}
 
fieldset.grupo .campo {
    float:  left;
    margin-right: 7px;
}
 
.campo input[type="text"],
.campo input[type="email"],
.campo input[type="url"],
.campo input[type="tel"],
.campo select,
.campo textarea {
    padding: 2px;
    border: 1px solid #000;
    height:30px;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
}
 
.campo select option {
    padding-right: 2px;
}
.campo select {
    height: 35px;
}

.campo textarea {    
    max-height: 100px;
    min-width: 100px;
}


 
.campo input:focus, .campo select:focus, .campo textarea:focus {
    background: #FFF;    
}
 
.campo label.checkbox {
    color: #000;
    display: inline-block;
    margin-right: 1em;
}

.botao {
    font-size: 1.5em;
    background: #fff;
    border: 1;
    border-color: black;
    margin-bottom: 5px;
    margin-top: 10px;
    color: #000;
    padding-bottom: 5px;
    padding-top: 5px;
    padding-right: 15px;
    padding-left: 15px;
    /*  
    box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);

    */
    transition: 0.3s;
}
 
.botao:hover {
    background: #000;
    color: #fff;
}
 
.botao, select, label.checkbox {
    cursor: pointer;
}

.validador {
    color: red;
    font-size: 1em;
    margin-left: 2px;
}