body {
  background-color: rgb(64, 141, 153);
  margin: 0;
  padding: 0;
}

.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.navbar {
  background-color: #ED8604;
  padding: 10px;
}

.nav-list {
  list-style: none;
  display: flex;
justify-content: flex-end;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}




button.link {
  background: white;
  border: none;
  color: #000000;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

button.link:hover {
  transform: scale(1.05); /* aumenta 5% */
  color: #ED8604;         /* muda a cor */
}

button.link:hover {
  transform: scale(1.05);
  color: #0056b3;
  text-decoration: underline;
}
