#sec-forms{
    margin-top: 50px;
    margin-bottom: 50px;
    font-family: 'Inter', sans-serif;
    min-height: 80vh;
    align-content: center;
}

.sec-forms h4{
    color: #999999;
}
.donativo{
    background-color: #f5f5f5;
}

.despesa{
    background-color: #f5f5f5;
}

label{
    font-size: 18px;
    color: #555555;
}

input{
    border: 0px;
    background-color: #ffffff;
    width: 100%;
    height: 40px;
    font-size: 15px;
    padding-left: 5px;
}

select{
    border: 0px;
    background-color: #ffffff;
    width: 100%;
    height: 40px;
    font-size: 15px;
    padding-left: 5px;
}

button{
    width: 100px;
    height: 40px;
    border: none;
    font-size: 18px;
    box-shadow: 2px 2px #054210;
    margin-top: 10px;
    margin-bottom: 10px;
}

button:hover{
    box-shadow: none;
    cursor: pointer;
}

.botao-limpar{
    background-color: #999999;
    border-radius: 5px;
    color: #ffffff;
}

.botao-limpar:hover{
    background-color: #054210;
}

.botao-enviar{
    background-color: #0BA132;
    border-radius: 5px;
    color: #ffffff;
}

.botao-enviar:hover{
    background-color: #054210;
}

.btnGoBack {
    background-color: #ffffff;
    text-decoration: none;
    color: #0BA132;
    font-size: 20px;
    padding: 5px 20px 5px 20px;
    text-align: center;
}

.btnGoBack:hover{
    background-color: #0BA132;
    border-radius: 5px;
    color: #ffffff;
    transition: ease-in;
    transition-duration: 0.3s;
}

.botao-calcular{
    background-color: rgba(11, 161, 50, 0.50);
    color: #ffffff;
    border: none;
    border-radius: 5px;
}

.botao-calcular:hover{
    background: rgba(5, 66, 16, 0.50);
    color: #ffffff;
}

/* Resposivo */
@media only screen and (max-width: 600px) {

    #sec-forms{
        margin-top: 20px;
        margin-bottom: 50px;
        font-family: 'Inter', sans-serif;
    }

    .botao-enviar{
        width: 100%;
        margin-top: 10px;
    }

    .botao-limpar{
        width: 100%;
        margin-bottom: 10px;
    }

    .botao-calcular{
        width: 100%;
        margin: 10px 0 10px 0;
    }
}