/* ═══════════════════════════════════════════════════════════════════════
   HoopPixels Marketing — Public-facing Form CSS
   ═══════════════════════════════════════════════════════════════════════ */

.hpm-form-wrap {
  max-width: 480px;
  margin: 0 auto;
}

.hpm-lead-form {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.hpm-field {
  margin-bottom: 16px;
}

.hpm-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 6px;
}

.hpm-required { color: #EF4444; }

.hpm-field input {
  width: 100%;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: #1E293B;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
  font-family: inherit;
}

.hpm-field input:focus {
  outline: none;
  border-color: #6366F1;
  box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}

.hpm-btn-submit {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .15s, transform .15s;
  font-family: inherit;
  letter-spacing: .3px;
}
.hpm-btn-submit:hover { opacity: .9; transform: translateY(-1px); }
.hpm-btn-submit:active { transform: translateY(0); }

.hpm-form-message {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.hpm-form-message.success {
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #BBF7D0;
}
.hpm-form-message.error {
  background: #FEE2E2;
  color: #B91C1C;
  border: 1px solid #FECACA;
}
