#login-container {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  overflow: hidden;
}

#login-form {
  background-color: #fff;
  color: #3b3b3b;
  padding: 20px;
  border-radius: 3px;
  box-shadow: 5px 5px 10px rgba(0 0 0 / 22%);
  width: 300px;
  border: 1px solid #3b3b3b;
}

#login-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000000;
  animation-duration: 1s;
  animation-name: scalein;
  animation-timing-function: ease-out;
}

@keyframes scalein {
  from {
    opacity: 0;
    scale: 0;
  }

  to {
    opacity: 1;
    scale: 1;
  }
}

@keyframes happyscale {
  from {
    opacity: 1;
    scale: 0.95;
  }

  to {
    opacity: 1;
    scale: 1;
  }
}

#login-container label {
  display: block;
  margin-bottom: -5px;
  font-size: 9pt;
  padding-left: 3px;
  background-color: #fff;
  position: relative;
  max-width: max-content;
  left: 3px;
  top: -1px;
  color: #333333;
}

label[name='error-label'] {
  color: red !important;
  background-color: transparent !important;
}

#login-container input {
  width: 100%;
  padding: 8px;
  margin-bottom: 24px;
  box-sizing: border-box;
  border: 1px solid lightgrey;
  border-radius: 5px;
}

#login-container input:focus {
  outline: none;
}

#login-container .federatedButton {
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

#login-container button {
  width: 100%;
  padding: 8px;
  margin-bottom: 24px;
  box-sizing: border-box;
  border: 1px solid lightgrey;
  border-radius: 5px;
  background-color: #b31643;
  color: #fff;
  padding: 10px;
  border: 1px solid #961338;
  border-radius: 3px;
  cursor: pointer;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.349);
}

#login-container button:hover {
  background-color: #961338;
}

#video {
  min-width: 100vw;
  min-height: 100vh;
  left: 0;
  top: 0;
  z-index: 5000000;
  object-fit: fill;
}

#login-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff33;
  backdrop-filter: blur(5px);
  z-index: 5000000;
}

html {
  overflow: hidden;
}

body {
  overflow: hidden;
}

#logo {
  width: calc(100% - 20px);
  margin: 10px 10px 30px 10px;
}

#copyright {
  font-size: 10px;
  color: #333333;
  text-align: center;
}

#login-status-message {
  display: flex;
  justify-content: center;
  text-align: center;
  font-style: italic;
}

#login-signed-acknowledgement {
  display: flex;
  padding-bottom: 20px;
  font-size: 0.85em;
  font-style: italic;
}

#login-admin {
  font-size: 12px;
  font-style: italic;
}