*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

section.main {
    /* Passthrough wrapper. The popup card (.main-wrapper) handles its own
       positioning. Avoid `position: fixed` + background here, because when
       this markup is injected into a Shopify modal whose ancestor has a
       CSS `transform`, `position: fixed` becomes relative to that ancestor
       and renders as a visible inner box (double-layer effect). */
    background: transparent;
}

.main-wrapper {
    width: 100%;
    max-width: 800px;
    height: auto;
    position: fixed;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background: url("./download.png") rgb(114, 21, 111); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 70px 30px;
    text-align: center;
}

.main-text h2 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
    color: #fff;

}

.main-text p {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 400;
    color: #fff;
    margin: 20px 0;

}

.main-text p span{
    color: #fba026;
}

.main-text form input{
    width: 100%;
    margin-bottom: 15px;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    color: #000;
    outline: none;
}

.main-text form button {
    background: rgba(255, 153, 0, 0.9);
    color: #fff;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 30px;
    cursor: pointer;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
}

.close-btn svg {
    width: 30px;
    height: 100%;
    fill: #fff;
}

/* .test{
    background: url(https://static.vecteezy.com/system/resources/previews/049/546/772/non_2x/stunning-high-resolution-nature-and-landscape-backgrounds-breathtaking-scenery-in-hd-free-photo.jpg);
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
} */