body {
  margin: 0;
  font-family: "Noto Sans TC", sans-serif;
  background-color: #f5f5f5;
}

.forgot-form {
  max-width: 400px;
  margin: 60px auto;
  background: #f8fafc;
  padding: 32px 32px 24px 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44,62,80,0.07);
}

.forgot-form h2 {
  text-align: center;
  margin-bottom: 24px;
  color: #2c3e50;
  font-size: 24px;
  letter-spacing: 2px;
}

.forgot-form label {
  display: block;
  margin-bottom: 8px;
  color: #2c3e50;
  font-weight: 500;
  font-size: 15px;
}

.forgot-form input[type="email"] {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
  margin-bottom: 18px;
  background: #fff;
  box-sizing: border-box;
}

.forgot-form button {
  width: 100%;
  padding: 10px 0;
  background: #2c3e50;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.2s;
}

.forgot-form button:hover {
  background: #1a242f;
}

.forgot-form .message {
  text-align: center;
  color: #e67e22;
  margin-top: 15px;
  font-size: 15px;
}

.forgot-form .back-link {
  display: block;
  text-align: center;
  margin-top: 18px;
  color: #2c3e50;
  text-decoration: underline;
  font-size: 15px;
}