/* 1) Make sure the page can still scroll */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-y: auto;      /* allow scrolling */
}

/* 2) Hide the scrollbar on WebKit browsers */
body::-webkit-scrollbar {
  display: none;
}

/* 3) Hide the scrollbar on Firefox */
body {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

/* shift the centered form down by 50px */
.main-layout {
  margin-top: 50px;
}
