body{
  margin:0;
  font-family:sans-serif;
  background:#f1f5f9;
}

/* LOGIN */
.login-page{
  display:flex;
  justify-content:center;
  align-items:center;
  height:100vh;
}

.login-box{
  width:300px;
  background:white;
  padding:20px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* SIDEBAR */
.sidebar{
  width:220px;
  height:100vh;
  position:fixed;
  background:#1e3a8a;
  color:white;
  padding:15px;
}

.sidebar button{
  width:100%;
  margin:5px 0;
}

/* CONTENT */
.content{
  margin-left:220px;
  padding:20px;
}

/* CARD */
.stat{
  padding:15px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}
