@import url('https://fonts.googleapis.com/css?family=Maven+Pro');
@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@500&display=swap');

html, body {
  height: 100%;
  padding:0px;
  margin:0px;
}

body {
  font-family:'Maven Pro',serif;
}

/************* LOGIN ****************/
#login_background {
  background-image:url("/pics/login.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: blur(8px);
  -webkit-filter: blur(8px);
  height: 100%;
  width: 100%;
  position:absolute;
  z-index: -1;
}

  #login_content{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
  }

    #login_box{
      background:white;
      width:300px;
      border-radius:6px;
      padding:0px 0px 70px 0px;
      border: #6dbd92 1px solid; 
      box-shadow: 0 8px 6px -2px grey;
    
    }

      #login_logo {
        width: 250px;
      }
  
      #login_username{
        background:#ecf0f1;
        border: #ccc 1px solid;
        border-bottom: #ccc 2px solid;
        padding: 8px;
        width:250px;
        color:#AAAAAA;
        font-size:1em;
        border-radius:4px;
      }

      #login_password{
        border-radius:4px;
        background:#ecf0f1;
        border: #ccc 1px solid;
        padding: 8px;
        width:250px;
        font-size:1em;
        margin-top:10px;
      }

      #login_btn{
        background:#6dbd92;
        width:89%;
        padding-top:5px;
        padding-bottom:5px;
        color:white;
        border-radius:4px;
        border: #6dbd92 1px solid;
        margin-top:20px;
        margin-bottom:20px;
        float:left;
        margin-left:16px;
        font-weight:800;
        font-size:0.8em;
        cursor:pointer;
      }


/********** MAIN ITERF ************/

#header {
  position: absolute; 
  left: 0;
  width: 100%;
  top:0;
  height: 50px;
  background-color: #6dbd92;
}

  #header img {
    height: 50px;
    margin-left: 10px;
  }

  #header span {
    position: absolute;
    top: 16px;
    right: 10px;
    color:white;
  }

    #header a {
      color:white;
      text-decoration: none;
    }

#menu {
  position: absolute;
  left: 0;
  width: 200px;
  top:50px;
  height: calc(100% - 50px);
  background-color: #EEE;
}
  .menu_option {
    border-bottom: 1px solid #DDD;
    padding: 20px 0px 20px 15px;
    cursor:pointer;
  }
    .menu_option img {
      height: 40px;
      vertical-align: middle;
      margin-right: 15px;
      position: relative;
    }
    .menu_option span {
      position:relative;
      top:1px;
    }
    .menu_option_selected {
      background-color: #FFF;
    }

#content {
  position: absolute;
  left: 200px;
  width: calc(100% - 200px);
  top:50px;
  height: calc(100% - 50px);
  overflow: auto;
}

