<Container height="100vh">
<Centre>
<Container
width={400}
decoration={{
color: '#333',
borderRadius: 16,
boxShadow: [{
color: 'rgba(0, 0, 0, 0.1)',
offset: { dx: 0, dy: 4 },
blurRadius: 20
}]
}}
>
<Padding padding={40}>
<Column spacing={24}>
<Centre widthFactor={1}>
<h2 style={{ margin: 0, fontSize: '1.75rem', fontWeight: 700 }}>
Sign In
</h2>
</Centre>
<Column spacing={16}>
<div>
<label style={{ display: 'block', marginBottom: 8, fontWeight: 500 }}>
Email
</label>
<input
type="email"
placeholder="you@example.com"
style={{
width: '100%',
padding: '12px',
border: '1px solid #d1d5db',
borderRadius: 8,
fontSize: '1rem'
}}
/>
</div>
<div>
<label style={{ display: 'block', marginBottom: 8, fontWeight: 500 }}>
Password
</label>
<input
type="password"
placeholder="••••••••"
style={{
width: '100%',
padding: '12px',
border: '1px solid #d1d5db',
borderRadius: 8,
fontSize: '1rem'
}}
/>
</div>
</Column>
<button style={{
width: '100%',
padding: '14px',
backgroundColor: '#eb1660',
color: 'white',
border: 'none',
borderRadius: 8,
fontSize: '1rem',
fontWeight: 600,
cursor: 'pointer'
}}>
Sign In
</button>
</Column>
</Padding>
</Container>
</Centre>
</Container>