{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "glass-sign-in-card-shadcnui",
  "type": "registry:component",
  "title": "Glass Sign-In Card",
  "description": "Glassmorphic sign-in panel with social auth buttons and email form",
  "registryDependencies": [
    "button"
  ],
  "dependencies": [
    "framer-motion",
    "react"
  ],
  "files": [
    {
      "path": "@uitripled/react-shadcn/src/components/components/forms/glass-sign-in.tsx",
      "content": "\"use client\";\n\nimport { Button } from \"@/components/ui/button\";\nimport { Checkbox } from \"@/components/ui/checkbox\";\nimport { Input } from \"@/components/ui/input\";\nimport { Label } from \"@/components/ui/label\";\nimport { motion, useReducedMotion } from \"framer-motion\";\nimport { Chrome, Github, Twitter } from \"lucide-react\";\nimport { FormEvent } from \"react\";\n\nconst socialProviders = [\n  { name: \"Google\", icon: Chrome },\n  { name: \"Twitter\", icon: Twitter },\n  { name: \"GitHub\", icon: Github },\n];\n\nexport function GlassSignInCard() {\n  const shouldReduceMotion = useReducedMotion();\n\n  const handleSubmit = (event: FormEvent<HTMLFormElement>) => {\n    event.preventDefault();\n  };\n\n  return (\n    <motion.div\n      initial={{ opacity: 0, y: shouldReduceMotion ? 0 : 16 }}\n      animate={{ opacity: 1, y: 0 }}\n      transition={{\n        duration: 0.45,\n        ease: shouldReduceMotion ? \"linear\" : [0.16, 1, 0.3, 1],\n      }}\n      className=\"group w-full max-w-lg rounded-3xl overflow-hidden border border-border/60 bg-card/85 p-8 backdrop-blur-xl sm:p-10 relative\"\n      role=\"form\"\n      aria-labelledby=\"glass-sign-in-title\"\n    >\n      <div\n        aria-hidden=\"true\"\n        className=\"absolute inset-0 bg-gradient-to-br from-foreground/[0.04] via-transparent to-transparent opacity-0 transition-opacity duration-300 group-hover:opacity-100 -z-10\"\n      />\n      <div className=\"mb-8 space-y-2 text-center\">\n        <div className=\"mx-auto inline-flex items-center gap-2 rounded-full border border-border/60 bg-white/5 px-3 py-1 text-xs uppercase tracking-[0.28em] text-muted-foreground\">\n          Sign In\n        </div>\n        <h1\n          id=\"glass-sign-in-title\"\n          className=\"text-2xl font-semibold text-foreground sm:text-3xl\"\n        >\n          Access your workspace\n        </h1>\n        <p className=\"text-sm text-muted-foreground\">\n          Choose a social account or continue with email and password.\n        </p>\n      </div>\n\n      <div className=\"mb-8 grid gap-3 sm:grid-cols-3\">\n        {socialProviders.map((provider) => (\n          <Button\n            key={provider.name}\n            variant=\"outline\"\n            className=\"flex items-center justify-center gap-2 rounded-full border-border/60 bg-card/70 text-sm text-foreground transition-transform duration-300 hover:-translate-y-1 hover:text-primary\"\n            aria-label={`Continue with ${provider.name}`}\n          >\n            <provider.icon className=\"h-4 w-4\" aria-hidden />\n            <span className=\"hidden sm:inline\">{provider.name}</span>\n          </Button>\n        ))}\n      </div>\n\n      <div className=\"mb-6 flex items-center gap-3\">\n        <div className=\"h-px flex-1 bg-border/70\" />\n        <span className=\"text-xs uppercase tracking-[0.34em] text-muted-foreground\">\n          or\n        </span>\n        <div className=\"h-px flex-1 bg-border/70\" />\n      </div>\n\n      <form className=\"space-y-6\" onSubmit={handleSubmit}>\n        <div className=\"space-y-2\">\n          <Label htmlFor=\"email\">Email address</Label>\n          <Input\n            id=\"email\"\n            type=\"email\"\n            placeholder=\"you@example.com\"\n            autoComplete=\"email\"\n            required\n            className=\"h-11 rounded-2xl border-border/60 bg-background/60 px-4\"\n          />\n        </div>\n\n        <div className=\"space-y-2\">\n          <Label htmlFor=\"password\">Password</Label>\n          <Input\n            id=\"password\"\n            type=\"password\"\n            placeholder=\"Enter your password\"\n            autoComplete=\"current-password\"\n            required\n            className=\"h-11 rounded-2xl border-border/60 bg-background/60 px-4\"\n          />\n        </div>\n\n        <div className=\"flex items-center justify-between text-sm text-muted-foreground\">\n          <label className=\"flex items-center gap-2\">\n            <Checkbox id=\"remember-me\" />\n            <span>Remember me</span>\n          </label>\n          <button\n            type=\"button\"\n            className=\"text-xs font-medium text-primary underline-offset-4 hover:underline\"\n          >\n            Forgot password?\n          </button>\n        </div>\n\n        <Button\n          type=\"submit\"\n          className=\"w-full rounded-full bg-primary px-6 py-3 text-primary-foreground shadow-[0_20px_60px_-30px_rgba(79,70,229,0.75)] transition-transform duration-300 hover:-translate-y-1\"\n        >\n          Continue with Email\n        </Button>\n      </form>\n\n      <p className=\"mt-6 text-center text-xs text-muted-foreground\">\n        By continuing you agree to our terms of service and privacy policy.\n      </p>\n    </motion.div>\n  );\n}\n",
      "type": "registry:component",
      "target": "components/uitripled/glass-sign-in-card-shadcnui.tsx"
    }
  ]
}