.dialog-bg {
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 9999;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dialog-bg2 {
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 999;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dialog {
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    width: 100%;
    border-radius: 10px;
    padding: 24px;
    filter: drop-shadow(0px 0px 20px black);
}

.dialog2 {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    width: 100%;
    filter: drop-shadow(0px 0px 20px black);
}


