.model-loader {
  background: #2b2b2b;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  display: flex;
}

.message {
  color: #fff;
  text-align: center;
  font-weight: 100;
  display: block;
}

.mosaic-loader {
  --cell-size: 64px;
  --cell-spacing: 1px;
  --border-width: 1px;
  --cells: 4;
  --total-size: calc(var(--cells) * (var(--cell-size)  + 2 * var(--cell-spacing)));
  width: var(--total-size);
  height: var(--total-size);
  flex-wrap: wrap;
  display: flex;
}

.mosaic-loader > .cell {
  --cell-color: white;
  flex: 0 0 var(--cell-size);
  margin: var(--cell-spacing);
  box-sizing: border-box;
  border: var(--border-width) solid var(--cell-color);
  background-color: #0000;
  animation: 1.5s infinite ripple;
}

.mosaic-loader > .cell.d-1 {
  animation-delay: .1s;
}

.mosaic-loader > .cell.d-2 {
  animation-delay: .2s;
}

.mosaic-loader > .cell.d-3 {
  animation-delay: .3s;
}

.mosaic-loader > .cell.d-4 {
  animation-delay: .4s;
}

.mosaic-loader > .cell.d-5 {
  animation-delay: .5s;
}

.mosaic-loader > .cell.d-6 {
  animation-delay: .6s;
}

.mosaic-loader > .cell:first-child {
  --cell-color: #d4aee0;
}

.mosaic-loader > .cell:nth-child(2) {
  --cell-color: #8975b4;
}

.mosaic-loader > .cell:nth-child(3) {
  --cell-color: #64518a;
}

.mosaic-loader > .cell:nth-child(4) {
  --cell-color: #565190;
}

.mosaic-loader > .cell:nth-child(5) {
  --cell-color: #44abac;
}

.mosaic-loader > .cell:nth-child(6) {
  --cell-color: #2ca7d8;
}

.mosaic-loader > .cell:nth-child(7) {
  --cell-color: #1482ce;
}

.mosaic-loader > .cell:nth-child(8) {
  --cell-color: #05597c;
}

.mosaic-loader > .cell:nth-child(9) {
  --cell-color: #b2dd57;
}

.mosaic-loader > .cell:nth-child(10) {
  --cell-color: #57c443;
}

.mosaic-loader > .cell:nth-child(11) {
  --cell-color: #05b853;
}

.mosaic-loader > .cell:nth-child(12) {
  --cell-color: #19962e;
}

.mosaic-loader > .cell:nth-child(13) {
  --cell-color: #fdc82e;
}

.mosaic-loader > .cell:nth-child(14) {
  --cell-color: #fd9c2e;
}

.mosaic-loader > .cell:nth-child(15) {
  --cell-color: #d5385a;
}

.mosaic-loader > .cell:nth-child(16) {
  --cell-color: #911750;
}

@keyframes ripple {
  0% {
    background-color: #0000;
  }

  30% {
    background-color: var(--cell-color);
  }

  60% {
    background-color: #0000;
  }

  100% {
    background-color: #0000;
  }
}

.login {
  box-sizing: border-box;
  background-color: #2080d5;
  border: .5rem solid #fff;
  border-radius: .25rem;
  min-width: 40%;
  min-height: 40vh;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.login-inputs {
  grid-template-columns: 1fr 3fr;
  gap: 1rem .5rem;
  width: 100%;
  margin-top: 1rem;
  padding: 1rem 4rem;
  display: grid;
}

.login-input-label {
  text-transform: uppercase;
  color: #fff;
  text-align: right;
}

.login-input-input {
  text-indent: .5rem;
}

.login-input-submit {
  color: #2080d5;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #facf5a;
  border-radius: 2rem;
  min-width: 5rem;
  max-width: 8rem;
  padding: .5rem 1rem;
  font-weight: bold;
}

.error-output {
  color: #ff0;
  grid-column: 1 / span 2;
  width: 100%;
  padding: .5rem 1rem;
  font-weight: bold;
}

.sprite {
  height: auto;
  position: absolute;
}

.circle-sprite {
  max-width: 6rem;
  bottom: -2rem;
  right: 0;
  transform: rotate(-25deg);
}

.triangle-sprite {
  max-width: 3rem;
  bottom: 1rem;
  transform: rotate(25deg);
}
/*# sourceMappingURL=hidden_village_v0.9.9f367d21.css.map */
