/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 27 2026 | 13:09:28 */
/* =========================
   Global HubSpot Form Styling
   Applies to all HubSpot forms
   ========================= */

/* Form wrapper */
.hs-form {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove wrapper spacing */
.hs-form .input,
.hs-form .hs-form-field {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box;
}

/* General field spacing */
.hs-form .hs-form-field {
  margin-bottom: 16px;
}

/* Hide labels completely for placeholder-only look */
.hs-form .hs-form-field > label {
  display: none !important;
}

/* First + Last Name 50/50 */
.hs-form .hs_firstname.hs-form-field,
.hs-form .hs_lastname.hs-form-field {
  width: 48%;
  display: inline-block;
  vertical-align: top;
}

.hs-form .hs_firstname.hs-form-field {
  margin-right: 4% !important;
}

.hs-form .hs_lastname.hs-form-field {
  margin-right: 0 !important;
}

/* Full-width common fields */
.hs-form .hs_email,
.hs-form .hs_company,
.hs-form .hs_country,
.hs-form .hs_phone,
.hs-form .hs_jobtitle,
.hs-form .hs_submit,
.hs-form .hs-dependent-field {
  display: block;
  width: 100%;
}

/* Inputs + selects + textarea */
.hs-form .hs-input,
.hs-form select,
.hs-form textarea {
  width: 100% !important;
  min-height: 54px;
  padding: 14px 18px;
  border: 1px solid #d9dee5;
  border-radius: 10px;
  background: #fff;
  font-size: 16px;
  line-height: 1.4;
  color: #222;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Textareas */
.hs-form textarea.hs-input {
  min-height: 120px;
  resize: vertical;
}

/* Placeholder text */
.hs-form .hs-input::placeholder,
.hs-form textarea::placeholder {
  color: #6f7782;
  opacity: 1;
}

/* Select wrapper for custom arrow */
.hs-form .hs_country .input,
.hs-form .hs-fieldtype-select .input {
  position: relative;
}

/* Custom select arrow */
.hs-form .hs_country .input::after,
.hs-form .hs-fieldtype-select .input::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #6f7782;
  border-bottom: 2px solid #6f7782;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

/* Select color */
.hs-form select {
  color: #6f7782;
  padding-right: 44px;
}

/* Selected value color */
.hs-form select:valid {
  color: #222;
}

/* Option text */
.hs-form select option {
  color: #222;
}

/* Focus state */
.hs-form .hs-input:focus,
.hs-form select:focus,
.hs-form textarea:focus {
  outline: none;
  border-color: #b8c2cf;
  box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.06);
  background: #fff;
}

/* Submit wrapper */
.hs-form .hs_submit {
  margin-top: 6px;
}

/* Submit button */
.hs-form .hs-button {
  display: inline-block;
  width: 100%;
  min-height: 56px;
  padding: 15px 22px;
  border: 0;
  border-radius: 10px;
  background: #111;
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Button hover */
.hs-form .hs-button:hover {
  opacity: 0.96;
  transform: translateY(-1px);
}

/* Button active */
.hs-form .hs-button:active {
  transform: translateY(0);
}

/* Error list */
.hs-form .hs-error-msgs {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

/* Error text */
.hs-form .hs-error-msg {
  font-size: 13px;
  color: #c62828;
  line-height: 1.35;
}

/* Error fields */
.hs-form .hs-input.invalid,
.hs-form .hs-input.error,
.hs-form select.invalid,
.hs-form select.error,
.hs-form textarea.invalid,
.hs-form textarea.error {
  border-color: #c62828;
  box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.06);
}

/* Keep hidden fields hidden */
.hs-form .hs-form-field[style*="display: none"] {
  display: none !important;
}

/* Mobile */
@media (max-width: 767px) {
  .hs-form .hs_firstname.hs-form-field,
  .hs-form .hs_lastname.hs-form-field {
    width: 100%;
    display: block;
    margin-right: 0 !important;
  }

  .hs-form .hs-input,
  .hs-form select,
  .hs-form textarea {
    min-height: 50px;
    padding: 12px 14px;
  }

  .hs-form .hs-button {
    min-height: 52px;
    font-size: 15px;
  }
}