*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{

background:#050816;

overflow:hidden;

display:flex;

justify-content:center;

align-items:center;

height:100vh;

color:white;

}

.stars{

position:fixed;

width:100%;

height:100%;

background:url("https://www.transparenttextures.com/patterns/stardust.png");

animation:move 60s linear infinite;

opacity:.4;

}

@keyframes move{

from{

background-position:0 0;

}

to{

background-position:1000px 1000px;

}

}

.container{

position:relative;

z-index:2;

width:90%;

max-width:450px;

background:rgba(255,255,255,.08);

backdrop-filter:blur(18px);

padding:40px;

border-radius:20px;

text-align:center;

box-shadow:0 0 30px rgba(0,255,255,.2);

}

h1{

font-size:38px;

margin-bottom:10px;

}

h2{

font-size:20px;

color:#00e5ff;

margin-bottom:20px;

}

p{

line-height:1.6;

margin-bottom:30px;

}

input{

width:100%;

padding:15px;

margin-bottom:15px;

border:none;

border-radius:10px;

font-size:16px;

}

button{

width:100%;

padding:16px;

border:none;

border-radius:10px;

font-size:18px;

cursor:pointer;

background:#00e5ff;

color:#000;

font-weight:bold;

transition:.3s;

}

button:hover{

transform:scale(1.05);

}

.counter{

margin-top:25px;

font-size:14px;

opacity:.8;

}

#message{

margin-top:20px;

font-weight:bold;

}