/*Registration Popup */
.register-popup  {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0, .4);
    z-index: 999999;
    align-content: center;
    cursor: pointer;
    padding: 16px;
}
.register-popup form {
    max-width: 600px;
    width: 100%;
    background: #fff;
    margin: auto!important;
    cursor: default;
}
/*Registration Popup */