body {
  font-family: 'Courier New', monospace;
  background-color: #1a1a1a; /* Dark background color */
  color: #00ff00; /* Green text color */
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  background-color: #333; /* Darker container background color */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.2); /* Greenish box shadow */
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 12px;
  font-weight: bold;
  color: #00ff00; /* Green label text color */
}

input {
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #666; /* Darker border color */
  border-radius: 6px;
  background-color: #222; /* Darker input background color */
  color: #00ff00;
}

button {
  background-color: #ff6600; /* Orange button color */
  color: #000; /* Black text color */
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
  background-color: #cc5500; /* Darker orange on hover */
  transform: scale(1.05);
}

/* Additional styles go here */
