9 lines
809 B
Plaintext
9 lines
809 B
Plaintext
page { background: white; }
|
|
.container { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100vh; padding: 32px; box-sizing: border-box; }
|
|
.logo-area { text-align: center; margin-bottom: 48px; }
|
|
.logo { width: 80px; height: 80px; line-height: 80px; border-radius: 20px; background: var(--color-primary-gradient); text-align: center; font-size: 36px; margin: 0 auto 16px; }
|
|
.slogan { font-size: 28px; font-weight: 700; color: var(--color-text); }
|
|
.sub-slogan { font-size: 15px; color: var(--color-text-secondary); margin-top: 4px; }
|
|
.error { font-size: 13px; color: var(--color-error); margin-bottom: 12px; text-align: center; }
|
|
.btn-primary { margin-top: 12px; }
|
|
.tip { font-size: 13px; color: var(--color-text-secondary); margin-top: 16px; text-align: center; } |