*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Arial, sans-serif;

    background:#0b3b78;

}


.login-page{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

}


.login-card{

    width:360px;

    background:white;

    border-radius:14px;

    padding:35px;

    box-shadow:0 15px 40px rgba(0,0,0,.3);

}


.login-header{

    text-align:center;

    margin-bottom:25px;

}


.login-header img{

    width:70px;

    height:70px;

    object-fit:contain;

    margin-bottom:15px;

}


.login-header h2{

    color:#0756b8;

    font-size:22px;

    font-weight:bold;

    text-transform:uppercase;

}


.login-header p{

    margin-top:10px;

    font-size:14px;

    color:#555;

    line-height:22px;

}


label{

    display:block;

    font-weight:bold;

    margin-top:15px;

    margin-bottom:5px;

}


.input{

    display:flex;

    align-items:center;

    border:1px solid #ccc;

    border-radius:8px;

    height:42px;

    overflow:hidden;

}


.input i{

    width:40px;

    text-align:center;

    color:#0756b8;

}


.input input{

    flex:1;

    height:100%;

    border:none;

    outline:none;

    padding:0 10px;

}


button{

    width:100%;

    height:45px;

    margin-top:25px;

    border:none;

    border-radius:8px;

    background:#0866e8;

    color:white;

    font-weight:bold;

    font-size:15px;

    cursor:pointer;

}


button:hover{

    background:#064db5;

}


.footer{

    text-align:center;

    margin-top:25px;

    font-size:12px;

    color:#666;

}