import type { Metadata } from "next";
import { AuthForm } from "@/components/auth/auth-form";

export const metadata: Metadata = { title: "Log in" };
export default function LoginPage() {
  return <div className="mx-auto max-w-md px-5 py-16 sm:py-24"><div className="rounded-3xl bg-white p-7 shadow-lift sm:p-10"><p className="text-sm font-bold uppercase tracking-[.18em] text-ember">Welcome back</p><h1 className="mt-3 text-4xl font-bold">Your next journey awaits.</h1><p className="mt-3 text-sm leading-6 text-muted-foreground">Log in to manage trips, saved stays, and your Encostay profile.</p><AuthForm mode="login" /></div></div>;
}
