.igloo-login-page {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-image: url(./bg.svg);
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-size: auto 100%;

  @media (max-aspect-ratio: 95/100) {
    background-position-x: calc((0.95 - 1151 / 1080) * 100vh);
  }

  .igloo-login-page-logo {
    position: absolute;
    width: 108px;
    height: 60px;
    top: 50px;
    left: 166px;
    background: url(./logo.svg) no-repeat;
    background-size: contain;
  }

  .igloo-login-page-child-box {
    position: absolute;
    top: 200px;
    left: 166px;
  }

  .igloo-login-page-text-box {
    position: absolute;
    right: 103px;
    bottom: 128px;

    .igloo-login-page-text-box-text {
      font-family: Semplicita Pro;
      font-weight: bold;
      color: #fff;
    }

    .igloo-login-page-text-box-buttons {
      margin-top: 40px;

      .igloo-login-page-text-box-buttons-button {
        display: inline-block;
        cursor: pointer;
        width: 140px;
        height: 45px;
        background-size: contain;
        background-repeat: no-repeat;
      }

      .igloo-login-page-text-box-buttons-apple {
        background-image: url(./apple.svg);
      }

      .igloo-login-page-text-box-buttons-google {
        background-image: url(./google.svg);
        margin-left: 16px;
      }
    }
  }
}

.igloo-login-page-mobile {
  padding: 16px;
  width: 100vw;
  height: 100vh;

  .igloo-login-page-mobile-logo {
    width: 108px;
    height: 60px;
    background: url(./logo.svg) no-repeat;
    background-size: contain;
  }

  .igloo-login-page-mobile-child-box {
    margin-top: 40px;
  }
}
