body {
  font-family: 'Helvetica', 'Arial', sans-serif;
  background-color: #f5f7fa;
}

.forgot-password-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.forgot-password-container {
  width: 100%;
  max-width: 420px;
  padding: 15px 15px;
}

.forgot-password-box {
  background: #fff;
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.forgot-password-title {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
  color: #333;
  font-size: 24px;
}

.forgot-password-group {
  margin-bottom: 20px;
}

.forgot-password-label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #555;
  font-size: 14px;
}

.forgot-password-input {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 15px;
  transition: border 0.3s ease;
  box-sizing: border-box;
}

.forgot-password-input:focus {
  border-color: #764ba2;
  outline: none;
}

.forgot-password-button-wrap {
  text-align: center;
  margin-top: 15px;
}

.forgot-password-button {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
  padding: 14px 30px;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(118, 75, 162, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.forgot-password-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(118, 75, 162, 0.4);
}

.forgot-password-error {
  margin-top: 20px;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  color: #d32f2f;
  background: #ffebee;
}

.forgot-password-success {
  margin-top: 20px;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  color: #2e7d32;
  background: #e8f5e9;
}

.forgot-password-back {
  text-align: center;
  margin-top: 20px;
}

.forgot-password-back a {
  color: #667eea;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.forgot-password-back a:hover {
  text-decoration: underline;
}
