*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins', sans-serif;
}

.logo{
width:220px;
max-width:80%;
margin-bottom:20px;
}

body{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
background:linear-gradient(135deg,#010101,#3c2a4e);
color:white;
padding:20px;
}

.container{
max-width:600px;
width:100%;
}

h1{
font-size:60px;
font-weight:600;
margin-bottom:20px;
}


p{
font-size:18px;
opacity:0.9;
margin-bottom:40px;
}

.notify-form{
display:flex;
gap:10px;
justify-content:center;
flex-wrap:wrap;
}

.notify-form input{
padding:12px 15px;
border:none;
border-radius:30px;
outline:none;
width:250px;
}

.notify-form button{
padding:12px 25px;
border:none;
border-radius:30px;
background:white;
color:#764ba2;
font-weight:600;
cursor:pointer;
transition:0.3s;
}

.notify-form button:hover{
background:#eee;
}

.footer{
margin-top:40px;
font-size:14px;
opacity:0.8;
}

@media(max-width:600px){

h1{
font-size:40px;
}

p{
font-size:16px;
}

.notify-form input{
width:100%;
}

.notify-form{
flex-direction:column;
}

}

a{
color:white;
font-weight:600;
text-decoration:none;
}

a:hover{
text-decoration:underline;
}