html,
body {
  height: 100%;
  background-color: #152042;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -o-text-size-adjust: none;
}

#minglContent {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 3vw, 5rem);
}

#minglContent > div {
  width: 50%;
}

@media (min-width: 992px) {
  /* 우측(앱 #root): 큰 화면=절반, 좁아지면 560px에서 멈춤 */
  #minglContent > .content-right {
    flex: 0 0 max(50% - clamp(1rem, 1.5vw, 2.5rem), 560px);
  }
  /* 좌측(가이드): 남는 공간을 차지 → 화면 줄면 우측보다 더 많이 줄어듦 */
  #minglContent > .content-left {
    flex: 1 1 0;
    min-width: 0;
  }
}

#minglContent > div:first-child {
  align-items: center;
  display: flex;
}

.circle {
  position: fixed;
  z-index: 1;
  top: calc(128 / 1080 * 100%);
  left: calc(800 / 1600 * 120%);

  width: 500px;
  height: 500px;
  flex-shrink: 0;

  border-radius: 9999px;
  opacity: 0.32;
  background-color: #47a561;
  filter: blur(32px);
}

.root-guide-wrap {
  width: 100%;
  height: 70%;
  max-width: 500px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-left: auto !important;
}

.root-guide-wrap .logo img {
  width: 316px;
  height: 48px;
}
.root-guide-wrap .root-guide-desc {
  margin: 24px 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.4px;
}
.root-guide-wrap .root-guide-btn {
  width: 100%;
  height: 48px;
  margin: 0 0 40px 0;
  box-sizing: border-box;
  padding: 0 16px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  background: linear-gradient(to right, #20aa3e, #03a588);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
}
.root-guide-wrap .root-guide-btn .arrow {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.root-guide-wrap .qrcode-block {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.root-guide-wrap .qrcode-block p {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

/* .root-guide-wrap .store-block {
  padding-top: 24px;
} */

.root-guide-wrap .store-block a {
  padding-right: 12px;
}

.qrcode-block-wraper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.qrcode-block-wraper p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  font-weight: 500;
  line-height: 32px; /* 177.778% */
  letter-spacing: -0.36px;
  padding: 0;
  margin: 0;
}

.qrcode-block-wraper .mingl-qrcode-block {
  width: 96px;
  height: 96px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mingl-qrcode-block img {
  width: 100%;
  height: auto;
}

#root {
  z-index: 2;
  position: relative;
  top: 0;
  display: flex !important;
  flex: 1;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100%;
  max-width: 560px;
  background-color: #fff;
}

body.bg-body-auth #root {
  background-color: #fff;
}

@media (max-width: 1100px) {
  .root-guide-wrap {
    padding-left: 16px;
  }
}

@media (max-width: 991.98px) {
  html.intro,
  html.intro body {
    background: linear-gradient(180deg, #006241 0%, #489f63 100%) !important;
    background-color: #006241 !important;
  }

  #minglContent > div {
    width: 100%;
  }
  #minglContent > div:first-child {
    display: none !important;
  }
  #root {
    max-width: 100%;
  }
  .circle {
    display: none;
  }
}
