html, body, .container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page {
  height: calc(100% - 50px);
  position: relative;
  top:50px;
  overflow: auto;
}

.header {
  position: fixed;
  top:0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 50px;
  width: 100%;
  padding: 5px;

  .burger, .show {
    display: none;
  }
}

.rightPanel {
  position: absolute;
  top:0;
  right: 0;
  height: 100%;
  width: 200px;
}

.button {
  padding: 5px;
  background: lightblue;
  border-radius: 3px;
  cursor: pointer;
  margin: 10px;
  display: inline-block;
}

.create-user {
  table {
    margin: 0 auto;

    td {
      padding: 10px;
    }
  }
  form {
    width: 500px;
    height: 120px;
    margin: auto;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    input {
      width: 420px;
    }
    label {
      margin: 10px 2px;
    }

    > * {
      float:left;
    }
  }
}

.home {
  table {
    margin: 50px auto;

    tr {
      td {
        &:nth-child(0) {
          text-align: left;
        }

        &:nth-child(1) {
          text-align: center;
        }

        &:nth-child(2) {
          text-align: center;
        }
      }
    }
  }
}

@media screen and (max-width: 960px) {
  .burger, .show {
    display: block !important;
  }
}