@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');

.grid {
  display: grid;
  grid-template-columns: 45% 55%;
}

.font-text {
  font-family: 'Open Sans', sans-serif;
}

.sidenav {
  height: 100%;
  width: 275px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #147227;
  overflow-x: hidden;
  padding-top: 20px;
}

.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  color: #ffff;
  font-size: 14px;
  display: block;
}

.hover:hover {
  color: #908a8a !important;
}

.nav {
  margin-left: 275px;
  /* Same as the width of the sidenav */
  padding: 0px 10px;
}

.banner {
  margin-left: 285px;
  /* Same as the width of the sidenav */
  padding: 0px 10px;
}

.box {
  box-shadow: 0 1px 0 rgb(0 0 0 / 10%);
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }

  .sidenav a {
    font-size: 18px;
  }
}

.btn-login{
  background-color: #147227;
  color: #ffff;
  border: 1px solid #3b874a;
  font-size: 14px;
}

.btn-login:hover{
  background-color: #5fab3e;
}



