#backdrop {
    position: fixed;
    z-index: 200;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    display: none;
}

#backdrop.visible, #popupForm.visible {
    display: block;
    pointer-events: all;
}

.invisible {
    display: none;
}

#popupForm {
    width: 400px;
    max-height: 53vh;
    /* height: 53vh; */
    padding: 5px;
    text-align:  center;
    font-weight: bold;
    position: relative;
    /* z-index: 100; */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #000;
    background-color: #fff;
    border-radius: 10px;
    
}

#close {
    width: 20px;
    height: 0px;
    color: #ff8080;
}

#createAccounterrorMessage {
    color:#ff8080;
}