Add 32px card padding and reduce max-width to 420px for consistency with the sign-in page. Add noValidate to prevent browser-native required validation outlines on inputs. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
64 lines
812 B
CSS
64 lines
812 B
CSS
.page {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 100vh;
|
|
background: var(--bg-base);
|
|
}
|
|
|
|
.wrapper {
|
|
width: 100%;
|
|
max-width: 420px;
|
|
padding: 16px;
|
|
}
|
|
|
|
.card {
|
|
padding: 32px;
|
|
}
|
|
|
|
.inner {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
font-family: var(--font-body);
|
|
width: 100%;
|
|
}
|
|
|
|
.logo {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin-bottom: 8px;
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.logoImg {
|
|
width: 36px;
|
|
height: 36px;
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 14px;
|
|
color: var(--text-muted);
|
|
margin: 0 0 24px;
|
|
text-align: center;
|
|
}
|
|
|
|
.error {
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
width: 100%;
|
|
}
|
|
|
|
.submit {
|
|
width: 100%;
|
|
}
|