#main-content {
  background-color: #f5f5f5;
  background-image: url('/img/bg.jpg');
  background-size: cover;
  background-position: top top;
  background-repeat: no-repeat;
}
#main-wrapper {
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
#main-wrapper > * {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#main-wrapper #navbar,
#main-wrapper #footer {
  flex-basis: 100%;
  padding: 1em 2%;
  justify-content: flex-end;
}
#main-wrapper #navbar .loginPopup,
#main-wrapper #footer .loginPopup {
  width: auto;
  padding-left: 1.5em;
  padding-right: 1.5em;
  border-radius: 1.5em;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
#main-wrapper #navbar .logout,
#main-wrapper #footer .logout {
  width: auto;
  padding-left: 1.5em;
  padding-right: 1.5em;
  border-radius: 1.5em;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
#main-wrapper #footer {
  justify-content: center;
}
#main-wrapper #footer > a {
  color: #fff;
  margin: 0 0.5em;
}
#main-wrapper .left {
  flex: 1;
  padding: 4%;
  text-align: left;
}
#main-wrapper .left h1 {
  color: #fff;
  font-size: 5vw;
  font-weight: 800;
  line-height: 1;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  margin-bottom: 50px;
}
#main-wrapper .left .description {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1em 2em;
  border-radius: 10px;
  color: #fff;
}
#main-wrapper .right {
  flex: 0 0;
  flex-basis: 40%;
  padding: 2%;
}
#main-wrapper .right .panel {
  width: 100%;
}
.Access .inputlabel,
.Profile .inputlabel {
  margin: 0;
}
.Access .row,
.Profile .row {
  margin: -0.5em;
}
.Access .row > *,
.Profile .row > * {
  padding: 0.5em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.panel {
  box-shadow: 0 15px 55px -20px #000000;
  background-color: rgba(255, 255, 255, 0.95);
}
.panel input {
  background-color: transparent;
}
.panel .info {
  margin-top: 1em;
  background-color: #fff6a9;
  padding: 1em;
  line-height: 1;
  font-size: 0.85em;
}
.avatar {
  position: relative;
  width: 150px;
  height: 150px;
  border: 5px solid #fff;
  box-shadow: 0px 0px 20px 1px #ddd;
  margin: auto;
  margin-bottom: 20px;
  margin-top: 20px;
  background-color: #e0e0e0;
  color: #fff;
  font-size: 75px;
}
.avatar .avatarImage {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#sessionPanel {
  text-align: center;
}
@media (max-width: 1300px) {
  #main-wrapper .left h1 {
    font-size: 7vw;
  }
  #main-wrapper .right {
    flex-basis: 50%;
  }
}
@media (max-width: 990px) {
  #main-wrapper {
    display: block;
    text-align: center;
  }
  #main-wrapper #navbar,
  #main-wrapper #footer {
    justify-content: center;
  }
  #main-wrapper .left h1 {
    font-size: 9vw;
  }
  #main-wrapper .left {
    flex-basis: 100%;
  }
  #main-wrapper .right {
    flex-basis: 100%;
  }
  #main-wrapper .right .panel {
    max-width: 600px;
  }
}
