.main_bg {
  width: 100%;
  height: 120%;
  background: url('../Img/main_img_ver1.webp');
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
}

.container {
  width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 60px 0;
}

.form-wrap {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-set {
  display: none;
}

.form-set.active {
  display: block;
}

.form-title {
  margin-bottom: 30px;
}

.form-main-title {
  font-size: 30px;
  font-weight: 700;
  color: #333;
  margin-top: 10px;
}

.form-main-title b {
  color: #007F41;
}

.form-main-title-small {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.form-sub-title {
  font-size: 18px;
  color: #666;
  font-weight: 500;
}

.form-sub-title-large {
  font-size: 30px;
  font-weight: 700;
  color: #00a767;
  margin-bottom: 0;
}

.form-sub-title-large b {
  color: #007F41;
}

.form-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;

}

.form-field {
  margin-bottom: 25px;
}

.name-field {
  flex: 1;
}

.general-field {}

.form-label {
  display: block;
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.form-text {
  width: 100%;
  padding: 18px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.form-text:focus {
  outline: none;
  border: 1px solid #00a767;
}

.form-text::placeholder {
  color: #999;
}

/* 예/아니오 버튼 그룹 */
.btn-group {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.btn-yes-no {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  position: relative;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-yes-no.active {
  background: #e8f5e9;
  border: 1px solid #00a767;
  color: #00a767;
  font-weight: 500;
}

/* 성별 선택 버튼 */
.btn-sex {
  display: inline-block;
}

.btn-sex .Rdio {
  display: none;
}

.btn-sex .Txt {
  display: inline-block;
  padding: 18px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  min-width: 50px;
}

.btn-sex .Rdio:checked+.Txt,
.btn-sex .Txt.Selected {
  background: #00a767;
  border: 1px solid #00a767;
  color: #fff;
  font-weight: 500;
}

.btn-sex .Txt:hover {
  border-color: #00a767;
}

/* 전화번호 입력 그룹 */
.mobile-input-group {
  display: flex;
  gap: 10px;
}

.mobile-input-group select {
  flex: 0 0 100px;
  padding: 12px 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  background: #fff;
  cursor: pointer;
}

.mobile-input-group select:focus {
  outline: none;
  border: 1px solid #00a767;
}

.mobile-input-group input {
  flex: 1;
}

/* 개인정보 동의 */
.privacy {
  display: flex;
  align-items: center;
  position: relative;
}

.privacy input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  display: block;
  z-index: 999;
  cursor: pointer;
}

.privacy input[type="checkbox"]+i {
  display: block;
  width: 22px;
  height: 22px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #fff;
  margin-right: 8px;
}

.privacy input[type="checkbox"]:checked+i {
  background: #00913A;
  border: 1px solid #00913A;
  position: relative;
}

.privacy input[type="checkbox"]:checked+i::after {
  content: "";
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  position: absolute;
  top: 2px;
  left: 6px;
  transform: rotate(45deg);
}

.privacy .agree-text {
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.privacy .agree-text b {
  color: #00913A;
  font-weight: 700;
}

.privacy .show_btn {
  text-decoration: none;
  margin-left: 5px;
}


/* 제출 버튼 */
.btn_submit {
  width: 100%;
  padding: 18px;
  background: #00913A;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.btn_submit img {
  width: 20px;
}

#next_to_guardian {
  margin-top: 50px;
}

#bohum_send {
  margin-top: 20px;
}
