
/* =========================
   BACKGROUND
========================= */

body{
background:
radial-gradient(circle at 20% 20%, #1e293b 0%, transparent 40%),
radial-gradient(circle at 80% 0%, #1e40af 0%, transparent 40%),
#0f172a;
}


/* =========================
   WRAPPER
========================= */

.wrapper{
max-width:1200px;
margin:auto;
padding:120px 20px 80px;
}


/* =========================
   HERO BUTTONS
========================= */

.hero-buttons{
margin-top:30px;
display:flex;
justify-content:center;
gap:16px;
flex-wrap:wrap;
}

.btn{
padding:12px 24px;
border-radius:10px;
font-size:14px;
text-decoration:none;
transition:.25s;
cursor:pointer;
border:none;
}

.btn-primary{
background:#2563eb;
color:white;
}

.btn-primary:hover{
background:#1d4ed8;
}

.btn-outline{
border:1px solid #334155;
color:#94a3b8;
}

.btn-outline:hover{
border-color:#2563eb;
color:white;
}


/* =========================
   CARD EFFECT (FIXED)
========================= */

.card{
position:relative;
overflow:visible;   /* 🔥 FIX */
z-index:1;
}

.card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
pointer-events:none;   /* ✅ CRITICAL FIX */
background:
radial-gradient(
circle 200px at var(--x) var(--y),
rgba(37,99,235,.15),
transparent 40%
);
opacity:0;
transition:.25s;
}

.card:hover::before{
opacity:1;
}


/* =========================
   NAV SHADOW
========================= */

.nav{
box-shadow:0 10px 30px rgba(0,0,0,.35);
}


/* =========================
   HERO TEXT
========================= */

.hero h1{
background:linear-gradient(90deg,#ffffff,#94a3b8);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}


/* =========================
   REGISTRATION FORM (FINAL)
========================= */

#registration .card{
max-width:520px;
margin:auto;
padding:20px;
border-radius:16px;
}

/* STACK */
#registration .form-group{
display:flex;
flex-direction:column;
gap:14px;
}

/* FIELD WRAPPER */
#registration .field{
padding:4px;
border-radius:12px;
background:#1e293b;
border:1px solid #334155;
}

/* INPUT + SELECT */
#registration input,
#registration select{
width:100%;
height:40px;
padding:0 12px;
border:none;
outline:none;
background:transparent;
color:white;
border-radius:10px;
font-size:14px;
position:relative;
z-index:2;   /* ✅ clickable fix */
}

/* PLACEHOLDER */
#registration input::placeholder{
color:#64748b;
}

/* SELECT FIX */
#registration select{
appearance:none;
}

/* DROPDOWN OPTIONS FIX */
#registration select option{
color:black;
background:white;
}

/* FOCUS */
#registration input:focus,
#registration select:focus{
box-shadow:0 0 0 1px #2563eb;
}

/* BUTTON */
#registration .btn{
margin-top:14px;
height:48px;
border-radius:12px;
font-size:15px;
}

#registration input{
background-clip:padding-box;
}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

.wrapper{
padding:100px 16px 60px;
}

.hero-buttons{
gap:10px;
}

.btn{
padding:10px 16px;
font-size:13px;
}

#registration .card{
padding:18px;
}

}
