/* 🌐 Base Styling */
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #00c9ff, #92fe9d);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 📦 Container */
.forgot-container {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-align: center;
  width: 300px;
}

/* 📝 Title */
.forgot-container h2 {
  margin-bottom: 10px;
  color: #333;
}

/* 🖊️ Input */
.forgot-container input {
  width: 100%;
  padding: 12px;
  margin: 12px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}

/* 🔘 Button */
.forgot-container button {
  width: 100%;
  padding: 12px;
  background: #128C7E;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.forgot-container button:hover {
  background: #0b665a;
}

/* 🔙 Back link */
.back-link {
  margin-top: 10px;
}

.back-link a {
  text-decoration: none;
  color: #128C7E;
  font-weight: bold;
}

#message {
  margin-top: 10px;
  font-weight: bold;
}
