body {
  overflow-y: hidden;
  overflow-x: hidden;
}

.notSupported {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 32px;
  height: 100vh;
  width: 100vw;
}

#video-background {
  -webkit-transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  height: auto;
  z-index: -100;
}

.main {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  z-index: 1;
  background: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 10px;
  justify-content: center;
}

.countdownLogo {
  /*margin-top: 10%;*/
  width: 220px;
  margin-bottom: 60px;
}

#countdown {
  font-size: 64px;
  margin: 40px;
}

.countdownDot {
  max-width: 5px !important;
  margin: 20px;
  max-height: 5px !important;
  border-radius: 50%;
  border: 1px solid white;
}

.countdownTime {
  min-width: 80px !important;
  max-width: 80px !important;
}

.passwordText {
  color: #fff;
  margin: 25px 0 20px 0;
  transition: all 100ms;
}

#password {
  display: flex
}

.passwordInput {
  width: 20px;
  color: white;
  margin-left: 20px;
  background-color: #000;
  border: 1px solid #999;
  padding: 10px;
  border-radius: 4px;
  text-align: center;
  -webkit-transition: all 1.3s;
  transition: all 1.3s;
}

.passwordInput:nth-child(1) {
  margin-left: 0;
}

.passwordInput:focus {
  background: none;
  background-color: #191919;
  border: 1px solid #fff;
  color: white;
  outline: none;
}

.passwordDot {
  background: #fff;
  margin-left: 42px;
  margin-top: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
}

.passwordDot:nth-child(1) {
  margin-left: 22px;
}

.wrong {
  color: red;
}
