@charset "UTF-8";
.signup-input {
  height: 46px;
  font-size: 1.1rem;
  border-radius: 1rem;
}

.password-eye {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-30%);
  cursor: pointer;
}

.passwordCheck-eye {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(20%);
  cursor: pointer;
}

.folded-container {
  bottom: -200px;
}

/* 기본 라디오 버튼 숨기기 */
input[type=radio] {
  display: none;
}

/* 라디오 버튼 대신 보일 커스텀 스타일 */
.custom-radio {
  display: inline-block;
  position: relative;
}
.custom-radio label {
  color: #757575 !important;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

/* 선택된 상태 스타일 */
input[type=radio]:checked + .custom-radio {
  border: 1px solid navy !important;
}
input[type=radio]:checked + .custom-radio label {
  color: navy !important;
}

/* 라벨 텍스트 스타일 */
.custom-radio label {
  line-height: 30px;
  text-align: center;
  display: block;
  color: white;
  font-weight: bold;
}