| .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; | |
| } | |