body, html {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    background-color: #0077b3; /* Cor um pouco mais apagada */
}
.container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}

.botao {
    background-color: #015077;
    color: white;
    padding: 20px 200px;
    border: none;
    border-radius: 10rem;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    margin-bottom: 10px;
    width: 100%; 
    box-sizing: border-box;
}


.botao:hover {
    background-color: #016394; 
}
.logo{
    margin-top: 40px;

}
.imagem_logo {
    width: 550px;
    height: 190px;
}
@media (max-width: 588px){
    body, html {
       margin:auto;
        
    }
    .botao {
    background-color: #015077;;
    color: white;
    padding: 20px 150px;
    border: none;
    border-radius: 10rem;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}
}
