*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;

    background:#f8f5fb;

    background-image:
    radial-gradient(circle at top left,#ffd8ef 0,#f8f5fb 40%),
    radial-gradient(circle at bottom right,#e8d9ff 0,#f8f5fb 40%);

    display:flex;
    justify-content:center;
    align-items:center;

    min-height:100vh;
    padding:30px;
}

.container{

    background:#fff;

    width:100%;
    max-width:850px;

    border-radius:25px;

    text-align:center;

    padding:55px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.icon{

    width:90px;
    height:90px;

    margin:auto;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:linear-gradient(135deg,#ff4da6,#6b3df5);

    color:#fff;
    font-size:38px;

    margin-bottom:25px;
}

h1{

    font-size:48px;
    color:#222;
    margin-bottom:20px;
}

.desc{

    color:#777;
    line-height:1.8;
    font-size:18px;

    margin-bottom:35px;
}

.progress-bar{

    width:100%;
    height:12px;

    background:#ececec;

    border-radius:30px;

    overflow:hidden;
}

.progress{

    width:50%;
    height:100%;

    background:linear-gradient(to right,#ff4da6,#6b3df5);
}

.progress-text{

    color:#777;
    margin-top:15px;
}

.launch{

    margin:45px 0;
}

.launch p{

    color:#666;
    font-size:22px;
}

.launch h2{

    margin-top:10px;

    font-size:42px;

    color:#6b3df5;
}

.notify-form{

    display:flex;
    justify-content:center;
    align-items:center;

    gap:15px;

    flex-wrap:wrap;

    margin-bottom:40px;
}

.notify-form input{

    width:430px;

    padding:18px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:16px;

    outline:none;
}

.notify-form input:focus{

    border-color:#7d4cff;
}

.notify-form button{

    padding:18px 35px;

    border:none;

    border-radius:12px;

    background:linear-gradient(135deg,#ff4da6,#6b3df5);

    color:#fff;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;
}

.notify-form button:hover{

    transform:translateY(-2px);
}

.help p{

    color:#777;
}

.help a{

    color:#333;
    text-decoration:none;
    font-weight:600;
}

.socials{

    margin-top:40px;

    display:flex;
    justify-content:center;
    gap:35px;
}

.socials a{

    color:#666;
    text-decoration:none;
    transition:.3s;
}

.socials a:hover{

    color:#7d4cff;
}

@media(max-width:768px){

    .container{

        padding:35px 20px;
    }

    h1{

        font-size:35px;
    }

    .desc{

        font-size:15px;
    }

    .launch h2{

        font-size:32px;
    }

    .notify-form{

        flex-direction:column;
    }

    .notify-form input{

        width:100%;
    }

    .notify-form button{

        width:100%;
    }

    .socials{

        flex-direction:column;
        gap:15px;
    }

}