.popUpCover {
    height: 100vh;
    width: 100vw;
}

.logo-div {
    border: 0px;
    border-radius: 50%;
}

#popUp {
    position: fixed;
    background-color: #fff;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
    padding: 18px 12px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    justify-items: center;
}

#popUp form {
    width: 100%;
}

#popUp .closedbtn {
    position: absolute;
    right: 20px;
}

.logo-div img {
    object-fit: contain;
    padding: 15px;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.logo-div {
    width: 150px;
    height: 150px;
    aspect-ratio: 1/1;
}

#popUp input {
    width: 100%;
}

.popUpCover[popupStatus="show"] {
    display: block;
}

.popUpCover[popupStatus="hide"] {
    display: none;
}