body {
  background: linear-gradient(to right, #004080, #ff0000);
  font-family: Arial, sans-serif;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Adicionado para empurrar o footer para o final */
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  background: #ffffff20;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  width: 300px;
  margin-top: auto;
  margin-bottom: auto;
}

h1 {
  margin-bottom: 10px;
  font-size: 28px;
}

input {
  width: 80%;
  padding: 10px;
  margin: 5px 0;
  border: none;
  border-radius: 10px;
}

button {
  width: 30%;
  padding: 10px;
  background-color: #003366;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
}

button:hover {
  background-color: #001f4d;
}

a.link {
  display: block;
  margin-top: 10px;
  color: white;
  text-decoration: underline;
}

.logo {
  width: 200px;
  margin-bottom: 20px;
}

/* NOVO: Estilização do rodapé */
footer {
  text-align: center;
  padding: 10px;
  background-color: transparent;
  width: 100%;
  color: white;
}
