/* 공통 */
#ff-form {
  max-width: 800px;
  margin: 0px auto;
  padding: 30px;
  background: #fdfdfd; /* contact-form보다 더 밝은 느낌 */
  border-radius: 10px;
  border: 1px solid #e0e4ef;
  font-family: "Noto Sans KR", sans-serif;
  color: #111F38;

  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

@media (max-width: 768px){
  #ff-form{
    padding: 15px;
  }
  #ff-form .cf-row {
    flex-direction: column;
    gap:0px !important;
    margin-bottom:0px !important;
  }
}

/* 2컬럼 행 */
#ff-form .cf-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
#ff-form .cf-row .cf-field {
  flex: 1;
}

/* 필드 */
#ff-form .cf-field {
  margin-bottom: 20px;
}
#ff-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #111F38;
}
#ff-form input,
#ff-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccd2e0;
  border-radius: 6px;
  background: #fafcff;
  font-size: 15px;
  transition: all 0.2s ease;
}
#ff-form input:focus,
#ff-form textarea:focus {
  border-color: #0d2248;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(17,31,56,0.12);
  outline: none;
}

/* textarea 크게 */
#ff-address {
  min-height: 120px;
  resize: vertical;
}

/* 필수 표시 */
#ff-form label .required {
  color: #e63946;
  margin-left: 4px;
  font-weight: bold;
}

/* 개인정보 안내 */
#ff-form .cf-privacy {
  border: 1px dashed #b8bfd1; /* contact-form보다 라이트하게 */
  background: #f6f8fc;
  padding: 14px;
  border-radius: 6px;
  font-size: 13px;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.6;
}
#ff-form .cf-privacy strong {
  color: #111F38;
}

/* 동의 체크 */
#ff-form .cf-agree {
  margin-bottom: 25px;
  font-size: 14px;
}
#ff-form .cf-agree label {
  display: flex;
  align-items: center;
}
#ff-form .cf-agree input[type="checkbox"] {
  margin-right: 6px;
  transform: scale(1.2);
}

/* 버튼 */
#ff-form button {
  width: 100%;
  background: #0d2248; /* contact-form보다 조금 더 진한 네이비 */
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
#ff-form button:hover {
  background: #193364;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(17,31,56,0.25);
}





.cf-agree-btn{
    width: unset !important;
}