*{
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;

min-height:100vh;

padding:20px;

}

/* CONTAINER */

.container{

display:flex;

gap:30px;

flex-wrap:wrap;

justify-content:center;

}

/* CARD ROLE */

.card{

width:250px;

background:#1E293B;

padding:35px;

border-radius:20px;

text-align:center;

cursor:pointer;

transition:0.3s;

border:2px solid #334155;

box-shadow:
0 0 15px rgba(
0,0,0,0.2
);

}

.card:hover{

transform:
translateY(-10px);

border-color:#3B82F6;

box-shadow:

0 0 25px
rgba(
59,
130,
246,
0.4
);

}

.card .icon{

font-size:60px;

margin-bottom:20px;

}

.card h2{

color:white;

margin-bottom:10px;

font-size:25px;

}

.card p{

color:#CBD5E1;

font-size:15px;

line-height:1.5;

}

a{

text-decoration:none;

}

/* LOGIN BOX */

.box{

width:350px;

background:#1E293B;

padding:35px;

border-radius:20px;

box-shadow:

0 0 20px
rgba(
0,
0,
0,
0.3
);

}

.box h2{

color:white;

text-align:center;

margin-bottom:25px;

}

input{

width:100%;

padding:13px;

margin-bottom:15px;

background:#334155;

border:none;

border-radius:10px;

color:white;

outline:none;

}

button{

width:100%;

padding:13px;

border:none;

border-radius:10px;

background:#3B82F6;

color:white;

font-size:16px;

cursor:pointer;

transition:0.3s;

}

button:hover{

background:#2563EB;

}

.box p{

color:#CBD5E1;

text-align:center;

margin-top:15px;

}

.box a{

color:#60A5FA;

}

/* RESPONSIVE */

@media(max-width:600px){

.container{

flex-direction:column;

}

.card{

width:100%;

}

.box{

width:100%;

}

}