*{

margin:0;

padding:0;

box-sizing:border-box;

font-family:'Poppins',sans-serif;

}

body{

height:100vh;

display:flex;

justify-content:center;

align-items:center;

background:linear-gradient(135deg,#0056b3,#3f87ff);

}

.login-container{

width:100%;

display:flex;

justify-content:center;

align-items:center;

}

.login-box{

width:380px;

background:#fff;

padding:40px;

border-radius:15px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.25);

}

.logo{

width:90px;

margin-bottom:15px;

}

.login-box h2{

color:#0056b3;

margin-bottom:5px;

}

.login-box p{

margin-bottom:25px;

color:#777;

}

.input-group{

display:flex;

align-items:center;

border:1px solid #ddd;

border-radius:8px;

padding:12px;

margin-bottom:18px;

}

.input-group i{

margin-right:10px;

color:#0056b3;

}

.input-group input{

border:none;

outline:none;

width:100%;

font-size:16px;

}

.btn-login{

width:100%;

padding:14px;

background:#0056b3;

color:white;

border:none;

border-radius:8px;

font-size:17px;

cursor:pointer;

transition:.3s;

}

.btn-login:hover{

background:#003d82;

}

.forgot{

margin-top:18px;

}

.forgot a{

text-decoration:none;

color:#0056b3;

font-weight:600;

}

.forgot a:hover{

text-decoration:underline;

}