body.password-page {
    background-color: #1a1a2e !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

.password-page .container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.password-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 48px 40px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.password-card .logo {
    width: 80px;
    height: 80px;
    margin-bottom: 32px;
}

.password-card .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    padding: 12px 16px;
    font-size: 15px;
    text-align: center;
    letter-spacing: 2px;
}

.password-card .form-control:focus {
    border-color: rgba(120, 80, 220, 0.6);
    box-shadow: 0 0 0 3px rgba(120, 80, 220, 0.2);
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.password-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 1px;
}

.password-card .btn-enter {
    background: linear-gradient(135deg, #5b21b6, #7c3aed, #6366f1);
    border: none;
    border-radius: 8px;
    color: #fff;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    margin-top: 16px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}

.password-card .btn-enter:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.password-card .btn-enter:active {
    transform: translateY(0);
}

.password-card .error-msg {
    color: #f87171;
    font-size: 13px;
    margin-top: 12px;
}
