/* =====================================================
 * 10-lock-screen.css — Premium Login Screen Styling
 * Glassmorphism & High-End Aesthetic
 * ===================================================== */

#global-passcode-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lock-screen-card {
    background: #ffffff;
    border: none;
    padding: 3rem 2.5rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: lockScreenPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lockScreenPop {
    0% { transform: scale(0.95); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.lock-logo-container {
    margin-bottom: 2.5rem;
}

.lock-logo-img {
    width: 70px;
    height: auto;
}

.passcode-input-wrapper {
    margin-bottom: 1.5rem;
}

#global-passcode-input {
    width: 100%;
    height: 64px;
    background: #ffffff;
    border: 3px solid var(--primary);
    color: var(--text-dark);
    font-size: 1.6rem;
    letter-spacing: 0.5rem;
    text-align: center;
    outline: none;
    transition: all 0.3s ease;
}

#global-passcode-input::placeholder {
    color: #cbd5e1;
    letter-spacing: 0.3rem;
}

#global-passcode-input:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 20px rgba(142, 113, 240, 0.2);
}

.lock-screen-btn {
    width: 100%;
    height: 64px;
    background: var(--primary);
    color: white;
    border: none;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lock-screen-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(142, 113, 240, 0.3);
}

.lock-screen-btn:active {
    transform: translateY(0);
}
