/* This sheet ignores color variables, as is intended for login only. */
html body header {
  display: none;
}
html body #main {
  margin-top: 0;
  min-height: calc(100vh - 40px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
html body #main video {
  position: fixed;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
html body #main #atlas-big-logo {
  position: absolute;
  top: 15px;
  left: 15px;
  height: 60px;
  opacity: 0.8;
}
html body #main .box {
  margin: 0;
  padding: 40px 50px 50px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  border-radius: 2px;
  background-color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 480px) {
  html body #main .box {
    max-width: none;
    border-radius: 0;
  }
}
html body #main .box h1 {
  margin: 0;
  font-family: 'Nunito Sans', Arial, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.25em;
  letter-spacing: -1px;
  color: #fff;
}
html body #main .box img#google-button {
  display: block;
  margin: 20px auto 0;
  width: 240px;
  opacity: 0.9;
  transition: opacity 0.1s ease;
}
html body #main .box img#google-button:hover {
  opacity: 1;
}
html body #main .box .or {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
html body #main .box .or p {
  margin: 30px 0;
  width: 20%;
  color: #fff;
}
html body #main .box .or hr {
  width: 40%;
  border: none;
  border-bottom: 1px solid #fff;
}
html body #main .box p.error {
  margin: 0 0 25px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 16px;
  text-align: center;
  background: #ffc354;
  border-radius: 1px;
  opacity: 0.9;
}
html body #main .box form {
  margin: 0 0 20px;
  width: 100%;
}
html body #main .box form .field {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
html body #main .box form .field label {
  color: #fff;
}
html body #main .box form .field input {
  padding: 3px 7px 2px;
  width: 180px;
  font-size: 1em;
  line-height: 2em;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 2px;
  transition: box-shadow 0.2s;
}
html body #main .box form .field input:hover,
html body #main .box form .field input:focus-within {
  box-shadow: 0 0 0 2px #303232, 0 0 0 4px var(--gn-color);
}
html body #main .box form p {
  text-align: right;
  margin: 0;
}
html body #main .box form p a {
  font-size: 12px;
  color: var(--link-color);
}
html body #main .box form p a:hover {
  text-decoration: underline;
}
html body #main .box form input[type='submit'] {
  margin: 20px 0 0;
  padding: 10px 20px;
  width: auto;
  font-family: 'Nunito Sans', Arial, sans-serif;
  font-size: 1em;
  font-weight: 700;
  line-height: 1em;
  color: #fff;
  background-color: #37792f;
  transition: background-color 0.1s ease;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  float: right;
}
html body #main .box form input[type='submit']:hover {
  background-color: #479e3d;
}
