* {
  box-sizing: border-box; }

html, body {
  height: 100%; }

body {
  margin: 0;
  background: #27222b;
  color: #b9b9b9;
  font-family: "Roboto", sans-serif; }

#loginPage {
  top: 10vh;
  left: 50%;
  position: absolute;
  margin: 0 auto;
  width: 100%;
  max-width: 300px;
  transform: translateX(-50%); }
  #loginPage img.logo {
    width: 100%;
    max-width: 200px;
    margin: 20px auto 70px;
    display: block; }
  #loginPage label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500; }
  #loginPage .input-block {
    margin-bottom: 40px; }
    #loginPage .input-block input[type="text"], #loginPage .input-block input[type="password"] {
      font-weight: 500;
      font-size: 20px;
      padding: 8px 13px;
      border: 0;
      border-radius: 3px;
      width: 100%; }

#uploadPage {
  padding: 10px;
  height: 100%;
  display: flex;
  flex-direction: column; }
  #uploadPage .header {
    background: #0000007d;
    margin: -10px -10px 20px;
    padding: 10px;
    text-align: center;
    border-bottom: 1px black solid;
    box-shadow: 0 0 6px 8px #0000002e; }
    #uploadPage .header img {
      width: 100px; }
  #uploadPage h1 {
    text-align: center;
    font-weight: normal;
    font-size: 25px; }
  #uploadPage .logoutButton {
    position: absolute;
    bottom: 0; }
  #uploadPage #progressContainer {
    flex: 1;
    width: 100%;
    margin-top: 20px;
    overflow: scroll; }
    #uploadPage #progressContainer div.progress-bar {
      position: relative;
      width: 100%;
      height: 20px;
      background: none;
      overflow: hidden;
      margin-bottom: 20px;
      border: 0;
      background: #a6a6a6;
      border-radius: 3px;
      color: black;
      text-align: center; }
      #uploadPage #progressContainer div.progress-bar > span {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        font-size: 12px;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        position: absolute; }
      #uploadPage #progressContainer div.progress-bar > div {
        width: 0;
        height: 100%;
        background: white;
        transition: all 0.2s ease; }

.btn {
  font-size: 19px;
  padding: 7px 20px;
  background: #7d806c;
  color: white;
  border: 0;
  border-radius: 5px;
  width: 100%;
  margin-top: 23px;
  transition: all 0.2s ease;
  font-weight: 500;
  box-shadow: 0 0 12px 3px #00000038; }
  .btn svg {
    width: 1.1em;
    height: 1.1em;
    margin: 0 6px -0.25em; }

.btn:hover, .btn:focus-visible {
  background: #4f5740; }

@media (min-width: 500px) {
  .buttons {
    display: flex;
    justify-content: space-between; }
    .buttons > button {
      width: 49%; } }

/*# sourceMappingURL=style.css.map */
