@charset "UTF-8";
#logo {
  margin-top: 10px;
  height: 100px;
  width: 100%;
  background: url(../../img/logo2021.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 0;
  left: 0;
}

#content-wrapper {
  margin-top: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.multicol-wrapper {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .multicol-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 1em;
  }
}

.password-tips {
  font-size: 0.8rem;
  text-align: left;
  color: #393838;
  list-style: none;
  margin: 0 0 0.25rem 0;
  padding-left: 1rem;
}
.password-tips li {
  color: #EF5734;
}
.password-tips li::before {
  content: "✘ ";
}
.password-tips li.matched {
  color: #2BAF2B;
}
.password-tips li.matched::before {
  content: "✔ ";
}/*# sourceMappingURL=login.css.map */