.ev-body {
  margin: 0;
  background: #07090d;
  color: #eaf0ff;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  min-height: 100vh;
}

.ev-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem 1.1rem 4rem;
}

.ev-hero {
  text-align: center;
  margin: 0.5rem 0 1.6rem;
}

.ev-kicker {
  margin: 0 0 0.4rem;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: #00f52a;
}

.ev-title {
  margin: 0 0 0.6rem;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  line-height: 1.05;
}

.ev-sub {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(234, 240, 255, 0.7);
}

.ev-form {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: #0c0e14;
  padding: 1.3rem;
}

.ev-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 560px) {
  .ev-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ev-field--full {
    grid-column: 1 / -1;
  }
}

.ev-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.ev-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(234, 240, 255, 0.55);
}

.ev-req {
  color: #00f52a;
}

.ev-input {
  font: inherit;
  font-size: 0.95rem;
  color: #eaf0ff;
  background: #11141c;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 0.6rem 0.7rem;
  width: 100%;
  box-sizing: border-box;
}

.ev-input:focus-visible {
  outline: none;
  border-color: rgba(0, 245, 42, 0.65);
  box-shadow: 0 0 0 3px rgba(0, 245, 42, 0.15);
}

/* Make the native date calendar picker visible on the dark field. */
.ev-input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.8;
  cursor: pointer;
}

.ev-input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.ev-input[type="date"]::-webkit-datetime-edit {
  color: #eaf0ff;
}

.ev-textarea {
  resize: vertical;
  min-height: 64px;
}

.ev-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  cursor: pointer;
  border: 1px solid transparent;
  margin-top: 1.2rem;
  width: 100%;
}

.ev-btn--primary {
  background: #00f52a;
  color: #06240d;
}

.ev-btn--primary:hover {
  background: #2bff52;
}

.ev-btn:disabled {
  opacity: 0.6;
  cursor: default;
}

.ev-result {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 245, 42, 0.3);
  background: rgba(0, 245, 42, 0.07);
}

.ev-result--err {
  border-color: rgba(255, 90, 90, 0.4);
  background: rgba(255, 90, 90, 0.09);
  color: #ffd3d3;
}

.ev-fineprint {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(234, 240, 255, 0.5);
}

.ev-fineprint a,
.ev-result a {
  color: #00f52a;
}
