Displays a form input field or a component that looks like an input.
import { Input } from "@/components/windows95-ui/input"
import { Label } from "@/components/windows95-ui/label"
<div className="grid grid-cols-[100px_1fr] items-center gap-4">
<Label>Email</Label>
<Input type="email" placeholder="Enter your email" />
</div>