30 lines
539 B
CSS
30 lines
539 B
CSS
.login-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
background: var(--bs-body-bg, #f8f9fa);
|
|
}
|
|
|
|
.login-card {
|
|
background: #fff;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 24px rgba(0,0,0,0.10);
|
|
padding: 2.5rem 2rem;
|
|
width: 100%;
|
|
max-width: 380px;
|
|
text-align: center;
|
|
}
|
|
|
|
.login-title {
|
|
font-size: 1.75rem;
|
|
font-weight: 700;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.login-hint {
|
|
color: #6c757d;
|
|
margin-bottom: 1.25rem;
|
|
font-size: 0.95rem;
|
|
}
|