'use client'; import React from 'react'; import { Box } from '@/ui/Box'; import { Text } from '@/ui/Text'; interface AuthCardProps { children: React.ReactNode; title: string; description?: string; } /** * AuthCard * * A matte surface container for auth forms with a subtle accent glow. */ export function AuthCard({ children, title, description }: AuthCardProps) { return ( {/* Subtle top accent line */} {title} {description && ( {description} )} {children} ); }