import Link from "next/link";
import { AuthLayoutShell } from "@/components/features/auth/AuthLayoutShell";
import { ForgotPasswordForm } from "@/components/features/auth/ForgotPasswordForm";

export default function ForgotPasswordPage() {
  return (
    <AuthLayoutShell>
      <h2 className="mb-4 text-lg font-extrabold">Reset your password</h2>
      <ForgotPasswordForm />
      <p className="mt-4 text-center">
        <Link
          href="/login"
          className="text-[13px] font-semibold text-primary hover:underline"
        >
          ← Back to log in
        </Link>
      </p>
    </AuthLayoutShell>
  );
}
