html,
body {
  height: 100%;
}

body {
  background-color: black;
  background-image: url("../res/bg-img.jpg");
  background-repeat:no-repeat;
  background-position: center center;
  background-size: auto 100%;
}

main {
  padding-top: 0px;
}

.video-bg {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  margin-left: 50vw;
  margin-top: 50vh;
  transform: translate(-50vw,-50vh);
  object-fit: cover;
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  background-color: #ffffff;
  opacity: 0.1;
  z-index: 500;
}

.user-input {
  margin-bottom: -1px !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.password-input {
  margin-bottom: 10px !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.password-input-toggle {
  height: calc(3.5rem + 2px);
  border-top-right-radius:0px;
}

.errorlabel {
	color: #ff0000;
}

.my-popup {
  position: relative;
  padding: 1rem;
  width: 90%;
  max-width: 20.625rem;
  margin: auto;
}

.my-popup.tfa-setup{
	max-width: 29.625rem;
}

@media only screen and (min-width: 367px) {
  .my-popup {
    width: 90%;
  }
}

@media only screen and (max-width: 367px) {
  .my-popup {
    width: 100%;
  }
}

.my-popup-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 0.5rem;
  z-index: 998;
}

.my-popup-content {
  position: relative;
  z-index: 999;
}


@media (max-width: 576px) {
	.my-popup {
		min-width: 100% !important;
		min-height: 100% !important;
	}
}