#khpcf-form {
  max-width: 1600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fdfdfd;
  /*border: 1px solid #ccc;
  border-radius: 8px;*/
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #333;
}

#khpcf-form h3 {
  margin-top: 0;
  text-align: center;
  font-size: 1.4rem;
}

#khpcf-form p {
  margin-bottom: 1em;
}

#khpcf-form label {
  display: block;
  margin-bottom: 1em;
}

#khpcf-form input[type="text"],
#khpcf-form input[type="date"],
#khpcf-form select {
  padding: 0.5em;
  margin-top: 0.3em;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.khpcf-wide {
      width: 100%;
}

#khpcf-form fieldset {
  border: 1px solid #bbb;
  border-radius: 5px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

#khpcf-form fieldset legend {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

#khpcf-form input[type="checkbox"] {
  margin-right: 0.5em;
}

#khpcf-form canvas {
  display: block;
  width: 100%;
  height: 150px;
  max-width: 100%;
  border: 2px solid #666;
  border-radius: 4px;
  background: #fff;
  touch-action: none;
}

#khpcf-form button {
  display: inline-block;
  margin-right: 0.5em;
  padding: 1.5em 1.2em;
  font-size: 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: #005eb8;
  color: #fff;
  transition: background 0.3s ease;
}

#khpcf-form .mainBtn {
  background: #005eb8;
  color: #fff;
  width: 100%;
}

#khpcf-form .secondary {
  background: #eee;
  color: #222;
}

#khpcf-form button:hover {
  background: #004794;
}

@media screen /*and (max-width: 1000px)*/ {
  #khpcf-form {
    padding: 1.5rem 1rem;
    font-size: 15px;
  }
}

.khpcf-button-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.khpcf-button-row .mainBtn {
  flex: 2;
}

.khpcf-button-row .secondary {
  flex: 1;
  background: #eee;
  color: #222;
}

@media (max-width: 600px) {
  .khpcf-button-row {
    flex-direction: column;
  }

  .khpcf-button-row .mainBtn,
  .khpcf-button-row .secondary {
    width: 100%;
  }
}

.khpcf-thankyou {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #e6f9e6;
  border: 1px solid #b2d8b2;
  border-radius: 8px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.khpcf-thankyou-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.khpcf-thankyou-buttons button,
.khpcf-thankyou-buttons .khpcf-new-form {
  display: inline-block;
  padding: 1.5em 1.2em;
  font-size: 1.2rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  background: #005eb8;
  color: #fff;
  transition: background 0.3s ease;
}

.khpcf-thankyou-buttons button:hover,
.khpcf-thankyou-buttons .khpcf-new-form:hover {
  background: #004794;
}