.zoho-lead-form {
  width: 100%;
  color: #ffffff;
}

.form-status[hidden],
.zoho-lead-form[hidden] {
  display: none !important;
}

.form-status.notice {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.zoho-lead-form form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.zoho-lead-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.zoho-lead-form__field {
  min-width: 0;
}

.zoho-lead-form__field label {
  display: block;
  margin-bottom: 0.55rem;
  color: #ffffff;
  font-family: 'UbuntuLocal', 'Ubuntu', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.zoho-lead-form__required {
  color: var(--hp-teal);
}

.zoho-lead-form input[type='text'],
.zoho-lead-form input[type='email'],
.zoho-lead-form input[type='tel'],
.zoho-lead-form input[type='url'],
.zoho-lead-form input[type='number'],
.zoho-lead-form input[type='file'],
.zoho-lead-form textarea,
.zoho-lead-form select {
  width: 100%;
  min-height: 50px;
  box-sizing: border-box;
  border: 1px solid rgba(15, 23, 42, 0.2);
  border-radius: 8px;
  background: #ffffff;
  color: #0b1220;
  font-family: 'UbuntuLocal', 'Ubuntu', sans-serif;
  font-size: 1rem;
  padding: 0.9rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.zoho-lead-form input[type='file'] {
  min-height: 56px;
  padding: 0.65rem;
}

.zoho-lead-form input[type='file']::file-selector-button {
  margin-right: 0.8rem;
  border: 0;
  border-radius: 6px;
  background: #0b1220;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 0.65rem 0.85rem;
}

.zoho-lead-form input:focus,
.zoho-lead-form textarea:focus,
.zoho-lead-form select:focus {
  border-color: var(--hp-teal);
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 229, 212, 0.12);
}

.zoho-lead-form textarea {
  min-height: 140px;
  resize: vertical;
}

.zoho-lead-form__hint {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.zoho-lead-form__consent {
  display: flex !important;
  align-items: flex-start;
  gap: 0.7rem;
  color: #ffffff;
  font-size: 0.9rem !important;
  line-height: 1.45;
  text-transform: none !important;
}

.zoho-lead-form__consent input {
  flex: 0 0 auto;
  margin-top: 0.2rem;
}

.zoho-lead-form__consent a {
  color: var(--hp-teal);
  text-decoration: underline;
}

.zoho-lead-form__actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 0.25rem;
}

.zoho-lead-form__submit {
  min-width: 150px;
}

.zoho-lead-form__submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.zoho-lead-form .wfrm_fld_dpNn,
.zoho-lead-form__system-field {
  display: none !important;
}

@media (max-width: 640px) {
  #application-section .cyan-heading {
    font-size: 2rem !important;
  }

  .zoho-lead-form__grid {
    grid-template-columns: 1fr;
  }

  .zoho-lead-form__actions,
  .zoho-lead-form__submit {
    width: 100%;
  }
}
