/* ===== 교육 신청폼 CSS ===== */
.edu_apply_wrap { max-width: 640px; margin: 0 auto; width: 100% !important; }
.edu_apply_title { font-size: 28px; font-weight: 800; margin: 0 0 28px; color: #111; letter-spacing: -0.5px; }

.edu_apply_summary {
  background: #f8f9fa; border-radius: 10px; padding: 22px 24px; margin-bottom: 32px;
}
.edu_apply_cate { font-size: 14px; color: #888; margin-bottom: 6px; }
.edu_apply_name { font-size: 18px; font-weight: 700; color: #222; margin-bottom: 8px; line-height: 1.45; }
.edu_apply_meta { font-size: 15px; color: #555; margin-top: 4px; }

.edu_apply_form { }
.edu_form_field { margin-bottom: 22px; }
.edu_form_field label { display: block; font-size: 16px; font-weight: 700; color: #222; margin-bottom: 10px; }
.edu_form_field .required { color: #e74c3c; margin-left: 2px; }
.edu_form_field .edu_input {
  width: 100%; padding: 14px 16px; border: 1px solid #ddd; border-radius: 8px;
  font-size: 16px; box-sizing: border-box;
}
.edu_form_field .edu_input:focus { border-color: var(--primary, #2196f3); outline: none; }
.edu_form_field .edu_input::placeholder { font-size: 15px; color: #aaa; }

.edu_form_agree {
  margin: 24px 0; padding: 18px 20px; background: #f8f9fa; border-radius: 8px;
}
.edu_form_agree label { font-size: 15px; color: #444; cursor: pointer; }
.edu_form_agree input[type="checkbox"] { margin-right: 8px; transform: scale(1.2); vertical-align: middle; }

/* ===== 수강신청 메인 버튼 (메인컬러 bg + 흰색 폰트) ===== */
.edu_btn_apply {
  display: block;
  width: 100%;
  padding: 18px 24px;
  margin-top: 8px;
  background: var(--primary, #f0473e);
  color: #fff !important;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.edu_btn_apply:hover {
  background: var(--primary, #f0473e);
  filter: brightness(0.92);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}
.edu_btn_apply:active { transform: translateY(0); }
.edu_btn_apply[disabled],
.edu_btn_apply:disabled {
  background: #ccc; cursor: not-allowed; box-shadow: none; filter: none;
}

/* 완료 */
.edu_apply_done {
  text-align: center; padding: 60px 20px;
}
.edu_done_icon { font-size: 48px; margin-bottom: 16px; color: #27ae60; }
.edu_apply_done h3 { font-size: 24px; color: #222; margin: 0 0 10px; }
.edu_apply_done p { font-size: 16px; color: #555; margin: 6px 0; }
.edu_done_notice { color: #e67e22 !important; font-weight: 600; margin-top: 12px !important; }
