

.popup-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
		z-index: 99999999;
}

.popup {

    position: fixed;
    background: #ffffff;
	color: #000000;
    width: 400px;
    left: 60%;
    top: 60%;
    transform: translate(-50%, -50%);
    padding: 30px;
    padding-top: 60px;
    margin: -100px 0 0 -100px;
    border-radius: 10px;
}

.popup form {
    display: fixed;
    flex-direction: column;
}

.popup form input {
    margin-bottom: 30px;
    height: 50px;
    font-size: 20px;
    border: 2px solid #000000;
}

.popup form input[type="submit"] {
    background: #000000;
    color: #ffffff;
    font-size: 24px;
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 40px;
    cursor: pointer;
}

.no-scroll {
    overflow-y: hidden;
}