.signUpMain {
  width: 100%;
}

.signUpContainer {
  display: flex;
  flex-direction: column;
}

.signUpWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.signUpMoBtnWrap {
  width: 100%;
  display: none;
  margin-top: 12px;
  margin-bottom: 12px;
}

.signUpMoBtnLine {
  display: flex;
  justify-content: start;
}

.signUpContentsWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: .5rem;
}

.signUpBtnWrap {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  gap: .25rem;
}

.signUpTitle {
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #111;
}

.signUpSubTitle {
  font-size: 16px;
  font-weight: 500;
  color: #4e4e4e !important;
}

.signUpRequestWrap {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid #e9e9e9;
  border-radius: 16px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.signUpRequestBtn {
  background: rgb(255, 255, 255);
  color: rgb(13, 27, 76);
  border: 2px solid rgb(13, 27, 76);
}

@media (max-width: 767px) {
  .signUpContainer {
    justify-content: space-between;
    min-height: calc(100svh - 32px);
  }

  .signUpWrap {
    gap: 2.5rem;
  }

  .signUpMoBtnWrap {
    display: block;
  }

  .signUpContentsWrap {
    gap: .75rem;
  }

  .signUpBtnLine {
    display: none;
  }

  .signUpTitle {
    font-size: 20px;
  }

  .signUpRequestWrap {
    border: 0;
    padding: 0;
    margin-top: .5rem;
  }
}