/* Intelixa Zoho form styling (scoped) */

.zoho-form {
  margin-top: 14px;
}

.zoho-form .form-row {
  margin: 12px 0;
}

.zoho-form .form-row label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
}

.zoho-form .form-row input,
.zoho-form .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.95);
  outline: none;
}

.zoho-form .form-row input:focus,
.zoho-form .form-row textarea:focus {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.10);
}

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

.zoho-form .form-row .form-field {
  width: 100%;
}

.zoho-form .form-row {
  display: block;
}

.zoho-form .form-row:has(.form-field) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 680px) {
  .zoho-form .form-row:has(.form-field) {
    grid-template-columns: 1fr;
  }
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.20);
  background: rgba(0, 212, 255, 0.10);
  color: rgba(255,255,255,0.95);
  cursor: pointer;
  font-weight: 600;
}

.submit-btn:hover {
  border-color: rgba(0, 212, 255, 0.35);
  background: rgba(0, 212, 255, 0.14);
}

.form-privacy {
  display: inline-block;
  margin-left: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.60);
}

.form-success {
  margin-top: 16px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.20);
}

/* Match dropdown styling to inputs */
.zoho-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.95);
  outline: none;
}

.zoho-form select:focus {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.10);
}
