
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #0f0f0f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.login-box {
  background: #1c1c1c;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(165, 214, 16, 0.3);
  width: 300px;
}

.login-box h2 {
  text-align: center;
  color: #a5d610;
  margin-bottom: 20px;
}

.login-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
}

.login-box button {
  width: 100%;
  padding: 10px;
  background: #a5d610;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.login-box button:hover {
  background: #c0ef2b;
}
