body{
    background-image: url(bg.png);
    font-family: Arial, sans-serif;
    height: 100vh;
    margin: 0;

}
main{
    display: flex;
    justify-content: center;
    align-items: center;
}
.formu{
    background-color: rgb(162 188 6);
    width: 30rem;
    height: 30rem;
    margin-left: auto;
    margin-top: 4rem;
    margin-bottom: auto;
    margin-right: auto;
    border-radius: 3%;
    position: relative;
    display: flex;
}

.esquilodiv{
    width: 100rem;
    height: 50rem;
}

.container {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  width: 300px;
}

.container h1 {
  text-align: center;
  color: #333;
}

.container form {
  display: flex;
  flex-direction: column;
}

.container label {
  margin-top: 10px;
  font-weight: bold;
}

.container input {
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.container button {
  margin-top: 20px;
  padding: 10px;
  background-color:rgb(52 82 4);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.container button:hover {
  background-color: #218838;
}

#result {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  color: #555;
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: relative;
        top: 2rem; /* Ajuste conforme necessário */
        left: 0;
        background-color: #7ab121;
        text-align: center;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        margin-left: 0;
    }

    .navbar-menu.active {
        display: flex;
    }

    .menu-toggle {
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        cursor: pointer;
        position: absolute; /* Posicionar em relação à navbar */
        top: .5rem; /* Ajuste conforme necessário */
        right: 1rem; /* Ajuste conforme necessário */
        z-index: 1001; /* Garante que o botão de menu toggle esteja acima da navbar */
    }

    .menu-toggle .bar {
        background-color: white;
        height: 3px;
        width: 25px;
        margin: 3px 0;
        display: block;
    }

}
