.password-submit-overlay {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(9, 18, 30, .56);
    backdrop-filter: blur(2px);
}

.password-submit-overlay[hidden] {
    display: none !important;
}

.password-submit-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 108px;
    min-height: 64px;
    padding: 18px 24px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 18px;
    background: rgba(20, 30, 43, .92);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .32);
}

.password-submit-dots span {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #5ca4ff;
    animation: password-submit-dot 1s ease-in-out infinite;
}

.password-submit-dots span:nth-child(2) {
    animation-delay: .15s;
}

.password-submit-dots span:nth-child(3) {
    animation-delay: .3s;
}

@keyframes password-submit-dot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: .45;
    }
    30% {
        transform: translateY(-9px);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .password-submit-dots span {
        animation-duration: 1.8s;
        transform: none;
    }
}
