html, body {
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Poppins',Helvetica,sans-serif;
    font-weight: 400;
}
.div-header {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #472F92;
    width: 100%;
    color: white;
    /* font-weight: bolder; */
    height: 3rem;
}
.logo-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
.logo_site {
    max-width: 200px; /* Ajuste o valor conforme necessário */
    width: 100%;
}

.formulario-container {
    margin-top: 100px;
    background-color: #472F92;
    border-radius: 1rem;
    padding: 4rem;
    color: white;
}

#buscaComplexa {
    display: block;
}

#buscaSimples {
    display: none;
}

#botaoConfirma {
    display: block;
}

.btn-custom {
    background-color: #ED0677; /* Cor desejada quando o mouse está sobre o botão */
    color: white; /* Cor do texto quando o mouse está sobre o botão */
    font-weight: bold;
  }

.btn-custom:hover {
    transform: scale(1.05);
    background-color: #ED0677;
}

li {
    color: orange;
    font-weight: bold;
}

ul {
    color: orange;
}

h1 {
    font-weight: bold;
}