*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{

min-height:100vh;

background:linear-gradient(
135deg,
#0f172a,
#1e293b,
#3b82f6
);

display:flex;

justify-content:center;

align-items:center;

overflow-x:hidden;

}

.container{

width:420px;

padding:40px;

border-radius:25px;

background:rgba(255,255,255,.08);

backdrop-filter:blur(20px);

box-shadow:

0 10px 40px rgba(0,0,0,.35);

}

h1{

color:white;

text-align:center;

margin-bottom:30px;

font-size:34px;

}

input{

width:100%;

padding:15px;

margin-top:15px;

border:none;

outline:none;

border-radius:12px;

background:rgba(255,255,255,.15);

color:white;

font-size:16px;

}

input::placeholder{

color:#ddd;

}

button{

margin-top:25px;

width:100%;

padding:15px;

border:none;

border-radius:12px;

font-size:17px;

cursor:pointer;

background:#3b82f6;

color:white;

transition:.3s;

}

button:hover{

background:#2563eb;

transform:translateY(-2px);

}

a{

color:#60a5fa;

text-decoration:none;

}

.links{

margin-top:20px;

display:flex;

justify-content:space-between;

}

.logo{

font-size:55px;

text-align:center;

margin-bottom:15px;

}

.home{

text-align:center;

color:white;

}

.home h2{

font-size:55px;

margin-bottom:20px;

}

.home p{

opacity:.8;

margin-bottom:40px;

line-height:30px;

}

.btn{

display:inline-block;

padding:16px 40px;

background:#3b82f6;

border-radius:12px;

color:white;

margin:10px;

transition:.3s;

}

.btn:hover{

background:#2563eb;

}