import type React from "react"

export function AuthLayout({
  children
}: { children: React.ReactNode }) {
  return (
    <div className="min-h-screen select-none
    flex items-center justify-center
    bg-gradient-to-br from-primary/5
    via-background to-primary/10
    py-[45px] px-4">
      {children}
    </div>
  )
}
