
.popup-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:  rgba(0,0,0,0.8);
    display: none;
    z-index: 999;
}

.popup {
    position: absolute;
    background: #E0E0E0;
    width: 350px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    padding-top: 50px;
    border-radius: 10px;
border: 2px solid #B17955;
}

.popup form {
    display: flex;
    flex-direction: column;
}

.popup form input {
    margin-bottom: 10px;
    height: 55px;
    font-size: 15px;
    /* border: 2px solid #ff0000; */
}
.buttonnn{
    border: 2px solid #B17955;
    margin-left:60px;
    width: 200px;
    border-radius: 5px;
}

.popup form input[type="submit"] {
    background: #B17955;
    color: #ffffff;
    font-size: 18px;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 20px;
}

.no-scroll {
    overflow-y: hidden;
}