@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --cor-verde: #006400;
    --cor-hover: #DCDCDC;
    --cor-fundo: #DCDCDC;
}

*{
    margin:0;
    padding:0;
}

.principal{
    background-color: var(--cor-fundo);
}

.cabecalho{
    background-color: var(--cor-verde);
    padding: 5%;
    background-image: url("logoprefeitura.png");
    background-size: 20%;
    background-repeat: no-repeat;
    background-position: center;
}

.conteudo__titulo{
    display:flex;
    justify-content: center;
    font-size: 25px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.conteudo__elementos{
    display: flex;
    flex-direction: column;
    align-items: center;
}


.formulario{
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.formulario__input{
    border: 2px solid var(--cor-verde);
    border-radius: 5px;
    width: 250px;
    display: flex;
    justify-content: center;
}

.formulario__input:hover{
    background-color: var(--cor-hover);
}

.formulario__select{
    width: 250px;
    display: flex;
    justify-content: center;
}

.botoes__formulario{
    width:250px;
    border: 2px solid black;
    text-decoration: none;
    width:250px;
    padding: 10px 20px;
    background-color: var(--cor-verde);
    color: white;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.botoes__formulario:hover{
    width:250px;
    border: 2px solid black;
    text-decoration: none;
    width:250px;
    padding: 10px 20px;
    background-color: var(--cor-hover);
    color: var(--cor-verde);
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.botao__relatorio{
    display: flex;
    justify-content: center;
    border: 2px solid black;
    text-decoration: none;
    width:200px;
    padding: 10px 20px;
    background-color: var(--cor-verde);
    color: white;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.botao__relatorio:hover{
    display: flex;
    justify-content: center;
    border: 2px solid black;
    text-decoration: none;
    width:200px;
    padding: 10px 20px;
    background-color: var(--cor-hover);
    color: var(--cor-verde);
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}


.rodape{
    background-color: var(--cor-verde);
    padding: 5%;
    background-image: url("logomacro.png");
    background-size: 18%;
    background-repeat: no-repeat;
    background-position: center;
}