.mymodal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 500;

    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-hidden {
    display: none;
}

.fixed-overlay-popup-content {
    transform: none;
}

.modal {
    text-align: center;
    margin: 0;
    margin-top: 10px;
}

.close__modal {
    font-size: 36px;
    color: #fff;

    position: absolute;
    right: 15px;
    top: 0px;
    cursor: pointer;
}

#loginpopup {
    position: relative;
    padding: 20px;
    width: 400px;
}