body {
  background-color: #101010;
  color: white;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

input {
  background-color: #202020;
  color: white;
  margin: 5px 0;
  padding: 10px;
  border: none;
  border-radius: 4px;
}

button {
  margin: 5px 0;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background-color: #202020;
  color: white;
  cursor: pointer;
}

button:hover {
  background-color: #666;
}

form {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.form-container {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#message {
  margin-top: 20px;
  color: #eaaa02;
  min-height: 60px;
  text-align: center;
  width: 100%;
}

.login-brand-logo{
width: 300px;
margin-bottom: 22px;
}

