<div className="flex min-h-screen items-center justify-center bg-muted px-4">
<Card className="w-full max-w-sm">
<CardHeader className="space-y-2 text-center">
<CardTitle className="text-xl">Sign in</CardTitle>
<p className="text-sm text-muted-foreground">
Enter your email to sign in to your account
</p>
</CardHeader>
<CardContent>
<form className="space-y-4">
<Field>
<FieldLabel>Email address</FieldLabel>
<Input type="email" placeholder="you@example.com" autoComplete="email" />
</Field>
<Field>
<div className="flex items-center justify-between">
<FieldLabel>Password</FieldLabel>
<a href="/forgot-password" className="text-xs text-muted-foreground hover:text-foreground">
Forgot password?
</a>
</div>
<Input type="password" autoComplete="current-password" />
</Field>
<Button type="submit" className="w-full">Sign in</Button>
</form>
<Separator className="my-6" />
<p className="text-center text-sm text-muted-foreground">
Do not have an account?{" "}
<a href="/signup" className="font-medium text-foreground underline underline-offset-2">
Sign up
</a>
</p>
</CardContent>
</Card>
</div>