body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #80d8ff;
}

form label {
  display: block;
  margin: 1rem 0 0.5rem;
  font-weight: bold;
  color: #b0bec5;
}

form input {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #333;
  border-radius: 8px;
  background-color: #292929;
  color: #e0e0e0;
}

form input::placeholder {
  color: #757575;
}

button {
  background-color: #80d8ff;
  color: #000;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}

button:hover {
  background-color: #4fc3f7;
}

footer {
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 10px;
  left: 0;
  color: #5ce65c;
}
