 body {
  font-family: Arial, sans-serif;
  background-color: #333;
  color: #fff;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

input {
  display: block;
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  background-color: #555;
  color: #fff;
  border-radius: 5px;
}

button {
  width: 100%;
  padding: 12px;
  border: none;
  background-color: #00cc99;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
}

button:hover {
  background-color: #00b385;
}

p {
  margin-top: 10px;
  font-size: 14px;
}

a {
  color: #00cc99;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
