
.moveit-form-wrapper {
  max-width: 700px;
  margin: auto;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.moveit-form-heading {
  text-align: center;
  font-size: 24px;
  margin-bottom: 25px;
  color: #222;
  font-weight: bold;
  border-bottom: 2px solid #ff691b;
  padding-bottom: 10px;
}

.moveit-form-wrapper input,
.moveit-form-wrapper textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #f7f8f9;
  color: #000;
  font-size: 16px;
}

.moveit-form-wrapper input:focus,
.moveit-form-wrapper textarea:focus {
  background-color: #fff;
  border: 1px solid #d45721;
  outline: none;
}

input[type="date"]::placeholder {
  color: #888;
  white-space: nowrap;
}

.gdpr-heading {
  margin-bottom: 8px;
  font-weight: bold;
}

.gdpr-row input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  margin: 0;
}

.gdpr-row input[type="checkbox"]:checked {
  background-color: #ff691b;
  border-color: #ff691b;
}

.gdpr-row input[type="checkbox"]::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: none;
}

.gdpr-row input[type="checkbox"]:checked::after {
  display: block;
}

.moveit-form-wrapper button {
  background-color: #ff691b;
  color: white;
  padding: 14px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  width: 100%;
}

.moveit-form-wrapper button:hover {
  background-color: #e55a1a;
}

.h-captcha {
  margin: 20px 0;
}

/* Responsive adjustment for mobile */
@media (max-width: 480px) {
  .moveit-form-wrapper {
    font-size: 15px;
  }

  .moveit-form-heading {
    font-size: 20px;
    padding-bottom: 8px;
  }

  .moveit-form-wrapper input,
  .moveit-form-wrapper textarea {
    font-size: 15px;
    padding: 10px;
  }

  .moveit-form-wrapper button {
    font-size: 16px;
    padding: 12px;
  }

  .gdpr-row label {
    font-size: 14px;
  }
}
