/** * AuthContainer - UI component for auth page layouts * * Pure presentation component for auth page container. * Used by auth layout to provide consistent styling. */ interface AuthContainerProps { children: React.ReactNode; } export function AuthContainer({ children }: AuthContainerProps) { return (