{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "p-card-3",
  "description": "Authentication card with separators",
  "dependencies": [
    "lucide-react"
  ],
  "registryDependencies": [
    "@coss/button",
    "@coss/card",
    "@coss/field",
    "@coss/form",
    "@coss/input"
  ],
  "files": [
    {
      "path": "registry/default/particles/p-card-3.tsx",
      "content": "import { ShieldAlertIcon } from \"lucide-react\";\nimport { Button } from \"@/registry/default/ui/button\";\nimport {\n  Card,\n  CardDescription,\n  CardFooter,\n  CardHeader,\n  CardPanel,\n  CardTitle,\n} from \"@/registry/default/ui/card\";\nimport { Field, FieldLabel } from \"@/registry/default/ui/field\";\nimport { Form } from \"@/registry/default/ui/form\";\nimport { Input } from \"@/registry/default/ui/input\";\n\nexport default function Particle() {\n  return (\n    <Card className=\"w-full max-w-xs\">\n      <CardHeader className=\"border-b\">\n        <CardTitle>Login to your account</CardTitle>\n        <CardDescription>Enter email and password to login</CardDescription>\n      </CardHeader>\n      <CardPanel>\n        <Form>\n          <Field>\n            <FieldLabel>Email</FieldLabel>\n            <Input placeholder=\"Enter your email\" type=\"email\" />\n          </Field>\n          <Field>\n            <FieldLabel>Password</FieldLabel>\n            <Input placeholder=\"Enter your password\" type=\"password\" />\n          </Field>\n          <Button className=\"w-full\" type=\"submit\">\n            Login\n          </Button>\n        </Form>\n      </CardPanel>\n      <CardFooter className=\"border-t\">\n        <div className=\"flex gap-1 text-muted-foreground text-xs\">\n          <ShieldAlertIcon className=\"size-3 h-lh shrink-0\" />\n          <p>The information you enter is encrypted and stored securely.</p>\n        </div>\n      </CardFooter>\n    </Card>\n  );\n}\n",
      "type": "registry:block"
    }
  ],
  "meta": {
    "className": "**:data-[slot=preview]:w-full **:data-[slot=preview]:flex **:data-[slot=preview]:justify-center"
  },
  "categories": [
    "card",
    "form"
  ],
  "type": "registry:block"
}