body{

background:

linear-gradient(
135deg,
#07112A,
#000814
);

color:white;

}

.container{

display:flex;

justify-content:center;

padding:80px;

}

.box{

background:#1E293B;

padding:40px;

border-radius:20px;

width:600px;

}

.box h1{

text-align:center;

margin-bottom:25px;

}

form{

display:flex;

flex-direction:column;

gap:18px;

}

input,
select{

padding:15px;

background:#334155;

border:none;

border-radius:10px;

color:white;

font-size:15px;

}

#skillArea{

display:grid;

grid-template-columns:

repeat(
2,
1fr
);

gap:12px;

margin-top:10px;

}

.skill-box{

background:#334155;

padding:12px;

border-radius:10px;

display:flex;

gap:10px;

align-items:center;

}

button{

padding:15px;

background:#2563EB;

border:none;

border-radius:10px;

color:white;

font-size:16px;

cursor:pointer;

}

button:hover{

background:#1D4ED8;

}