*{

margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;

}

body{

background:

linear-gradient(
135deg,
#0F1D3E,
#000000
);

display:flex;

justify-content:center;

align-items:center;

height:100vh;

color:white;

}

.box{

background:#1E293B;

padding:40px;

border-radius:20px;

width:400px;

}

h1{

text-align:center;

margin-bottom:25px;

}

input{

width:100%;

padding:15px;

margin-bottom:15px;

background:#334155;

border:none;

border-radius:10px;

color:white;

}

button{

width:100%;

padding:15px;

background:#2563EB;

border:none;

border-radius:10px;

color:white;

cursor:pointer;

}

button:hover{

background:#1D4ED8;

}

#error{

margin-top:15px;

text-align:center;

color:#EF4444;

}