File size: 955 Bytes
f8ca2a5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
.password-prompt {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100%;
}
.password-prompt form {
display: flex;
flex-direction: column;
align-items: center;
padding: 2rem;
border-radius: 8px;
border: 1px solid var(--primary-special-color);
border-left: none;
border-right: none;
border-bottom: none;
background-image: linear-gradient(180deg, var(--card-color), var(--bg-secondary));
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.password-prompt label {
color: white;
margin-bottom: 1rem;
font-weight: 300;
}
.password-prompt input {
padding: 0.5rem;
margin-bottom: 1rem;
border: none;
border-radius: 4px;
background-color: var(--bg-primary);
color: white;
}
.password-prompt button {
padding: 0.5rem 1rem;
border: none;
border-radius: 4px;
background-color: var(--player-primary, #76c7c0);
color: white;
cursor: pointer;
display: flex;
gap: 5px;
}
|