27 lines
386 B
CSS
27 lines
386 B
CSS
|
|
.login-modal {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0,0,0,0.7);
|
|
display: none;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 20000;
|
|
}
|
|
|
|
.login-box {
|
|
background: white;
|
|
padding: 20px;
|
|
border-radius: 12px;
|
|
width: 280px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.login-error {
|
|
color: red;
|
|
font-size: 14px;
|
|
min-height: 18px;
|
|
}
|
|
|