37 lines
648 B
CSS
37 lines
648 B
CSS
.lock-screen {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 4rem 2rem;
|
|
text-align: center;
|
|
margin: auto 0;
|
|
}
|
|
|
|
.lock-icon-container {
|
|
width: 96px;
|
|
height: 96px;
|
|
background: var(--teal-soft);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-bottom: 2rem;
|
|
color: var(--teal);
|
|
box-shadow: 0 0 40px var(--teal-soft);
|
|
}
|
|
|
|
.lock-title {
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 2rem;
|
|
margin: 0 0 1rem 0;
|
|
}
|
|
|
|
.lock-message {
|
|
color: var(--text-muted);
|
|
font-size: 1.1rem;
|
|
max-width: 400px;
|
|
line-height: 1.6;
|
|
}
|