.elementor-1450 .elementor-element.elementor-element-12f7c5b{--display:flex;}.elementor-1450 .elementor-element.elementor-element-9a69389{--spacer-size:50px;}.elementor-1450 .elementor-element.elementor-element-0f1989c{--display:flex;}.elementor-1450 .elementor-element.elementor-element-c521493{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-c74f8d8 *//* ✅ 전체 폼 래퍼 */
.cosmosfarm-members-form {
  max-width: 600px;
  margin: 50px auto;
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  font-family: 'Noto Sans KR', sans-serif;
}

/* ✅ 필드셋 제목 제거 */
fieldset legend {
  display: none;
}

/* ✅ 라벨 공통 */
label.text {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111;
}

/* ✅ 필수 * 표시 */
.req {
  color: red;
  margin-left: 4px;
}

/* ✅ 인풋 그룹 간 여백 */
.div_text,
.div_radio {
  margin-bottom: 24px;
}

/* ✅ 인풋 필드 스타일 */
.textbox {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  font-size: 15px;
  box-sizing: border-box;
  transition: 0.2s;
}
.textbox:focus {
  border-color: #0077cc;
  box-shadow: 0 0 0 2px rgba(0,119,204,0.2);
  outline: none;
}

/* ✅ 성별 버튼 스타일 */
.div_radio {
  display: flex;
  gap: 12px;
}

.div_radio input[type="radio"] {
  display: none;
}

.div_radio label.radio {
  display: inline-block;
  padding: 10px 20px;
  border: 1.5px solid #ccc;
  border-radius: 30px;
  background: #f9f9f9;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.div_radio input[type="radio"]:checked + label {
  background: #0077cc;
  color: white;
  border-color: #0077cc;
}

/* ✅ 버튼 영역 */
.button_div {
  text-align: center;
  margin-top: 40px;
}

.buttons {
  all: unset;
  display: inline-block;
  padding: 14px 50px;
  background: #0077cc;
  color: #fff;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  transition: 0.2s ease-in-out;
}
.buttons:hover {
  background: #005fa3;
  transform: translateY(-2px);
}

/* ✅ 필수 안내 텍스트 */
.req-text {
  font-size: 14px;
  color: #888;
  text-align: right;
  margin-top: 20px;
}

/* ✅ 숨김 필드 제거 */
input[type="hidden"] {
  display: none;
}/* End custom CSS */