body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #a5a5a5, #000000);
  color: white;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  width: 90%;
  max-width: 350px;
}

.logo {
  width: 200px;
  margin-bottom: -15px;

}

h1 {
  color: #d1810a;
}

input {
  width: 95%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 10px;
  outline: none;
}

button {
  background-color: #d1810a;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: 0.3s;

}

button:hover {
  background-color: #24242eb6;
}

.mensagem-erro {
  background-color: #ff4d4d;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 15px;
  text-align: center;
}