﻿/* CSS do formulário */
.formulario {
    font-family: Verdana;
    font-size: 9px;
    font-style: italic;
    max-width: 650px;
    padding: 4px;
    margin: 0;
    border-width: 1px;
    border-style: solid;
    border-color: gray;
    background-color: white;
}

    .formulario h1 {
        font-size: 16px;
        font-style: normal;
        font-weight: bold;
        text-align: center;
    }

    .formulario h2 {
        font-size: 14px;
        font-style: normal;
        font-weight: bold;
        text-align: center;
    }

    .formulario input[type=text] {
        font-size: 10px;
        font-weight: bold;
        font-style: normal;
        background: #f8f8f8;
        border-color: gray;
        border-width: 1px;
        margin-right: 3px;
        width: 500px;
    }

.cabecalho1 {
    font-size: 14px;
    font-style: normal;
    font-weight: bold;
    line-height: 16px;
    margin-top: 32px;
}

.cabecalho2 {
    font-size: 13px;
    font-style: normal;
    line-height: 15px;
    margin-top: 32px;
}

.centraliza {
    text-align: center;
}

@media (max-width:500px) {
    .formulario input[type=text] {
        padding-left: 0px;
        width: 270px;
    }
}
