/* 공통 */
#cf-form {
  max-width: 800px;
  margin: 0px  auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-family: "Noto Sans KR", sans-serif;
  color: #111F38;

  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

@media (max-width: 768px){
  #cf-form{
    padding: 15px;
  }
  #cf-form .cf-row {
    flex-direction: column;
    gap:0px !important;
    margin-bottom:0px !important;
  }
}

/* 2컬럼 행 */
#cf-form .cf-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
#cf-form .cf-row .cf-field {
  flex: 1;
}

/* 필드 */
#cf-form .cf-field {
  margin-bottom: 20px;
}
#cf-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #111F38;
}
#cf-form input,
#cf-form textarea,
#cf-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccd2e0;
  border-radius: 8px;
  background: #fafbfe;
  font-size: 15px;
  transition: all 0.2s ease;
}
#cf-form input:focus,
#cf-form textarea:focus,
#cf-form select:focus {
  border-color: #111F38;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(17,31,56,0.1);
  outline: none;
}

/* textarea 크게 */
#cf-message {
  min-height: 120px; /* 약 5줄 */
  resize: vertical;
}

/* 필수 표시 */
#cf-form label .required {
  color: #e63946;
  margin-left: 4px;
  font-weight: bold;
}

/* 개인정보 안내 */
#cf-form .cf-privacy {
  border: 1px solid #e1e5ee;
  background: #f9fafc;
  padding: 14px;
  border-radius: 8px;
  font-size: 13px;
  color: #444;
  margin-bottom: 5px;
  line-height: 1.6;
}
#cf-form .cf-privacy strong {
  color: #111F38;
}

/* 동의 체크 */
#cf-form .cf-agree {
  margin-bottom: 25px;
  font-size: 14px;
}
#cf-form .cf-agree label {
  display: flex;
  align-items: center;
}
#cf-form .cf-agree input[type="checkbox"] {
  margin-right: 6px;
  transform: scale(1.2);
}

/* 버튼 */
#cf-form button {
  width: 100%;
  background: #111F38;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
#cf-form button:hover {
  background: #1a2c52;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(17,31,56,0.2);
}


.cf-agree-btn{
    width: unset !important;
}