```css
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:-apple-system,BlinkMacSystemFont,sans-serif;
}

body{
background:#09090f;
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
padding:40px;
color:white;
overflow-x:hidden;
}

.background{
position:fixed;
inset:0;
background:
radial-gradient(circle at top right,#3b82f6 0%,transparent 30%),
radial-gradient(circle at bottom left,#8b5cf6 0%,transparent 30%);
filter:blur(120px);
opacity:.5;
}

.container{
position:relative;
z-index:2;
display:grid;
grid-template-columns:1.2fr 1fr;
gap:30px;
max-width:1200px;
width:100%;
}

.glass{
background:rgba(255,255,255,.08);
backdrop-filter:blur(20px);
border:1px solid rgba(255,255,255,.12);
border-radius:28px;
padding:40px;
}

.hero h1{
font-size:64px;
line-height:1;
margin-bottom:20px;
}

.hero h1 span{
display:block;
background:linear-gradient(90deg,#60a5fa,#c084fc);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero p{
opacity:.8;
font-size:18px;
line-height:1.7;
margin-bottom:30px;
}

.stats{
display:flex;
gap:20px;
}

.stats div{
background:rgba(255,255,255,.05);
padding:20px;
border-radius:18px;
}

.form-card h2{
margin-bottom:20px;
}

input{
width:100%;
padding:15px;
margin-bottom:15px;
background:rgba(255,255,255,.08);
border:none;
border-radius:14px;
color:white;
}

button{
width:100%;
padding:16px;
border:none;
border-radius:14px;
cursor:pointer;
background:linear-gradient(90deg,#3b82f6,#8b5cf6);
color:white;
font-size:16px;
font-weight:600;
}

#message{
margin-top:20px;
text-align:center;
}

@media(max-width:900px){

.container{
grid-template-columns:1fr;
}

.hero h1{
font-size:42px;
}

}
```
