#userJoinCmptn {
  @media (min-width: 320px) {
    .content.content {
      height: calc(100vh - 8rem);
    }
  }

  .content {
    margin: 0 auto;
    max-width: 40rem;
    padding: 0 1rem;
  }

  #safety-index-step-1 {
    .top-msg {
      margin: 8rem auto 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      align-items: flex-start;
      justify-content: flex-start;
      width: 32rem;

      .title {
        color: var(--gray-01, #121212);
        text-align: left;
        font-family: var(--heading-h1b-font-family, "Pretendard-Bold", sans-serif);
        font-size: var(--heading-h1b-font-size, 22px);
        line-height: var(--heading-h1b-line-height, 30px);
        letter-spacing: var(--heading-h1b-letter-spacing, -0.02em);
        font-weight: var(--heading-h1b-font-weight, 700);
        position: relative;
      }

      .title-desc {
        color: var(--gray-04captionlable, #707070);
        text-align: left;
        font-family: var(--body-bodyr-font-family, "Pretendard-Regular", sans-serif);
        font-size: var(--body-bodyr-font-size, 14px);
        line-height: var(--body-bodyr-line-height, 20px);
        font-weight: var(--body-bodyr-font-weight, 400);
      }
    }

    .mid-img {
      display: grid;
      place-items: center;

      .img-giftbox>img {
        width: 24rem;
        height: 24rem;
      }

      .icon-group {
        display: flex;
        margin: 2rem auto;
        gap: 1rem;
      }
    }

    .bot-btn {
      position: fixed;
      bottom: 0;
      padding: 1.6rem 1.6rem 2rem 1.6rem;
      padding-bottom: calc(env(safe-area-inset-bottom) + 2rem);
      display: flex;
      width: 100%;
      gap: 8px;
      justify-content: center;

      .btns {
        background: var(--gray-08, #f2f2f2);
        border-radius: 10px;
        padding: 1rem;
        display: flex;
        flex-direction: row;
        gap: 12px;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 12rem;
        height: 5rem;
        position: relative;
      }

      .btns2 {
        background: var(--primary-600, #1d7afc);
        border-radius: 10px;
        padding: 16px 12px 16px 12px;
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 20rem;
        height: 5rem;
        position: relative;
      }

      .btn-next {
        color: var(--gray-02h4, #353535);
        text-align: center;
        font-family: var(--button-button01-font-family,
            "Pretendard-Bold",
            sans-serif);
        font-size: var(--button-button01-font-size, 18px);
        line-height: var(--button-button01-line-height, 20px);
        font-weight: var(--button-button01-font-weight, 700);
        position: relative;
        flex: 1;
      }

      .btn-create {
        color: var(--default-white, #ffffff);
        text-align: center;
        font-family: var(--button-button01-font-family,
            "Pretendard-Bold",
            sans-serif);
        font-size: var(--button-button01-font-size, 18px);
        line-height: var(--button-button01-line-height, 20px);
        font-weight: var(--button-button01-font-weight, 700);
        position: relative;
        flex: 1;
      }
    }
  }

  #safety-index-step-2 {
    .top-msg {
      margin: 2rem auto 2rem;

      .close {
        text-align: end;

        .icon-close {
          width: 4rem;
          height: 4rem;
        }
      }

      .title {
        margin: 2rem;
      }
    }

    .mid {
      padding: 1rem;
      margin: 2rem auto;

      .choice-box {
        display: grid;
        grid-auto-flow: column;
        align-items: center;
        justify-content: center;

        .choice-option {
          border: 2px solid transparent;
          cursor: pointer;
          display: inline-block;
          text-align: center;

          .choice-btn {
            background: #ffffff;
            border-radius: 10px;
            border-style: solid;
            border-color: var(--gray-07, #dbdbdb);
            border-width: 1px;
            width: 154px;
            height: 18rem;
            display: grid;
            align-content: baseline;
            justify-items: anchor-center;

            em {
              position: absolute;
              bottom: 0;
              padding-bottom: 2rem;
              justify-self: center;
            }
          }

          .active {
            background-color: #E9F2FF;
            border: 2px solid #1D7AFC;
          }
        }
      }

      .img-desc {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;

        .unordered-list {
          display: inline-flex;
          flex-direction: row;
          gap: 0px;
          align-items: flex-start;
          justify-content: flex-start;
          flex-shrink: 0;
          width: 32rem;
          position: relative;

          .h4-r {
            color: var(--gray-05captioninfodisable, #949494);
            position: relative;
            flex: 1;
          }
        }
      }
    }

    .bot {
      position: absolute;
      bottom: 0;
      padding: 1.6rem 1.6rem 2rem 1.6rem;
      padding-bottom: calc(env(safe-area-inset-bottom) + 2rem);
      width: 36rem;
      justify-self: anchor-center;
    }
  }
}