/* Forgot Password Page Styles */
.forgot-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f6f7fb;
  padding: 24px;
}

.forgot-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  padding: 28px;
  text-align: center;
}

.forgot-title {
  margin: 0 0 6px;
  font-size: 26px;
  font-weight: 700;
  color: #1f2937;
}

.forgot-subtitle {
  margin: 0 0 18px;
  font-size: 14px;
  color: #6b7280;
}

/* Form Input Styling */
.form-group {
  margin-bottom: 14px;
  text-align: left;
}

.form-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: #8fb28d;
  box-shadow: #8fb28d;
}

/* Submit Button */
.form-actions {
  margin-top: 6px;
}

.btn-primary {
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 8px;
  background: #8fb28d;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #1d4ed8;
}

/* Back to Login Link */
.back-line {
  margin-top: 14px;
  text-align: center;
}

.back-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.back-link:hover {
  text-decoration: underline;
}
