/* Ezy Forms — front-end styles. Dark theme matching the Ezy Web Pro card
   standard (black + gold). Scoped to .ezf-* so it never collides with site CSS. */

.ezf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.25rem;
}
.ezf-field.ezf-full { grid-column: 1 / -1; }
.ezf-field.ezf-half { grid-column: span 1; }
@media (max-width: 560px) {
  .ezf-grid { grid-template-columns: 1fr; }
  .ezf-field.ezf-half { grid-column: 1 / -1; }
}

.ezf-field { display: flex; flex-direction: column; gap: 0.4rem; }
.ezf-field > label {
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
}
.ezf-field input[type=text],
.ezf-field input[type=email],
.ezf-field input[type=tel],
.ezf-field input[type=number],
.ezf-field select,
.ezf-field textarea,
.ezf-field input[type=file] {
  width: 100%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(245,184,0,0.3);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  font-family: inherit;
}
.ezf-field input::placeholder,
.ezf-field textarea::placeholder { color: rgba(255,255,255,0.45); }
.ezf-field input:focus,
.ezf-field select:focus,
.ezf-field textarea:focus {
  outline: none;
  border-color: #F5B800;
  box-shadow: 0 0 0 3px rgba(245,184,0,0.15);
}
.ezf-field select option { background: #1a1a1a; color: #fff; }
.ezf-help { color: rgba(255,255,255,0.55); font-size: 0.8rem; }

.ezf-heading h4 {
  color: #fff;
  margin: 0.75rem 0 0;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(245,184,0,0.25);
}

.ezf-choices { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; }
.ezf-choice {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
  cursor: pointer;
}
.ezf-choice input { accent-color: #F5B800; }

.ezf-actions { margin-top: 1.5rem; text-align: center; }
.ezf-submit { min-width: 200px; }

.ezf-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

.ezf-status { margin-top: 1rem; text-align: center; font-size: 0.9rem; }
.ezf-status.ezf-error { color: #ff8a80; }

.ezf-loading { color: rgba(255,255,255,0.6); text-align: center; padding: 2rem 0; }

.ezf-success {
  text-align: center;
  padding: 2.5rem 1rem;
}
.ezf-success-check {
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #34C759, #22a34a);
  color: #fff;
  font-size: 2rem;
  display: grid;
  place-items: center;
}
.ezf-success p { color: #fff; font-size: 1.1rem; }
