body{
  font-size: .875rem;
  margin-top: 55px;
  font-weight: 400;
  line-height: 1.5;
}
form{
  margin-block-end: 0;
}
.app-header{
  position: fixed;
  top: 0;
  left: 0;
  height: 55px;
  width: 100vw;
}
.app-sidebar{
  position: fixed;
  top: 55px;
  left: 0;
  height: calc(100vh - 55px);
  width: 200px;
  background-color: #2f353a;
}
.app-sidebar .sidebar{
  padding: 0;
  margin: 0;
  display: flex;
  list-style: none;
  width: 200px;
  flex-direction: column;
}
.app-sidebar .sidebar-title{
  padding: .75rem 1rem;
  font-size: 80%;
  font-weight: 700;
  color: #e4e7ea;
  text-transform: uppercase;
}
.app-sidebar .sidebar-link{
  display: block;
  padding: .75rem 1rem;
  color: #fff;
  text-decoration: none;
  background: rgba(0,0,0,0);
}
.app-sidebar .sidebar-link:hover{
  background: #20a8d8;
}
.app-body{
  min-height: calc(100vh - 110px);
  margin-left: 200px;
  padding: 30px;
  background-color: #e4e5e6;
}
.app-footer{
  height: 55px;
  padding: 0 30px;
  background: #f0f3f5;
  line-height: 55px;
}
.app-login-body{
  min-height: 100%;
  padding: 30px;
  background-color: #e4e5e6;
}
.no-focus-input {
  border: 0;
}
.no-focus-input:focus {
  outline: none;
}