29 lines
460 B
CSS
29 lines
460 B
CSS
.auth-container {
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.auth-card {
|
|
max-width: 950px;
|
|
border-radius: 24px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.auth-brand {
|
|
background: var(--bs-tertiary-bg);
|
|
}
|
|
|
|
.auth-logo {
|
|
width: 72px;
|
|
height: 72px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 18px;
|
|
background: var(--bs-primary);
|
|
color: var(--bs-body-bg);
|
|
font-size: 28px;
|
|
}
|
|
|
|
.auth-switch a {
|
|
font-weight: 600;
|
|
} |