body {
    margin: 0;
    padding: 5vh 20vw;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    background-color:  rgb(239, 239, 239); 
    color: rgb(0, 0, 0);
}

form {
    padding: 3% 0 0 10%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

input {
    border-radius: 20px;
    border: 0;
    font-size: 1.1rem;
    padding: 2%;
    width: 50%;
    box-shadow: -2px 2px 2px rgba(76, 34, 92, 0.49) inset;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.button{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: larger;
    font-weight: 600;
    padding: 2% 3%;
    background-color: rgb(193, 212, 164);
    border: 0;
    border-radius: 20px;
    box-shadow: -2px 2px 2px rgba(76, 34, 92, 0.49);
    transition: transform .2s ease-in-out;
}

.button:hover{
    transform: scale(1.05);
}

.footer-logo-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
}

.footer-logo-fixed img {
    width: 50px;
    height: 50px;
}

hr{
    width: 100%;
}

#custo-total{
    font-size: larger;
}