* {
  box-sizing: border-box;
}

/* main div container */
.ccp-contact-form {
  max-width: 700px;
  margin: 40px auto;
  padding: 35px;
  background-color: #ffffff;
  font-family: "segoe ui";
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* acf-form-content */
.acf-form-content {
  display: grid;
  /* max-width: 280px; */
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

.ccp-contact-form,
input,
textarea {
  border-radius: 0.5rem;
}

/* main heading */
.ccp-contact-form h2 {
  color: #0073aa;
  text-align: center;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
}

/* text */
.ccp-contact-form .text {
  font-size: 15px;
  text-align: center;
  color: #2d2d2dac;
}

/* form */
#ccp-form {
  margin-top: 30px;
}

/* label */
label,
button {
  font-size: 1.3rem;
  font-weight: 600;
}

/* input box */
input,
textarea {
  padding: 12px 15px;
  width: 100%;
  background-color: #fafafa;
  border: 2px solid #3333334d;
  color: #2d2d2dac;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #0073aa;
  box-shadow: 0 0 6px rgba(0, 115, 170, 0.3);
  background-color: #fff;
}

textarea {
  height: 140px;
}

/* button */
#ccp-form p button {
  background-color: #0073aa;
  color: #fafafa;
  padding: 0.5rem;
  width: 100%;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

#ccp-form button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* result div */
.ccp-response {
  text-align: center;
  color: green;
}