// This nested layout must NOT include <html> or <body> — only root app/layout.tsx can.
// This file just passes children through so the login page gets its own isolated shell.
export default function LoginLayout({ children }: { children: React.ReactNode }) {
    return <>{children}</>;
}
