body {
  font-family: Arial, sans-serif;
  background-color: #1a1a1a;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  text-align: center;
}

.forgot-container {
  width: 300px;
  padding: 30px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 0 0 20px #00FFFF, 0 0 30px #00FFFF, 0 0 40px #00FFFF;
}

.input-field {
  margin: 10px 0;
  width: 100%;
  padding: 10px;
  background: #333;
  border: 2px solid #444;
  border-radius: 5px;
  color: white;
  font-size: 16px;
  box-sizing: border-box;
  outline: none;
}

.input-field:focus {
  border-color: #00FFFF;
  box-shadow: 0 0 10px #00FFFF;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #00FFFF;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #00cccc;
}

button:active {
  background-color: #00b3b3;
}

.back-button {
  margin-top: 20px;
  font-size: 14px;
  color: #00FFFF;
  text-decoration: none;
}

.back-button:hover {
  color: #ff9900;
}