.es-main {
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.25rem 1.15rem 3rem;
}

.es-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.es-step {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1rem 1.05rem;
  border: 1px solid #334155;
  border-radius: 0.65rem;
  background: rgba(15, 23, 42, 0.9);
}

.es-step h2 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  color: #5eead4;
}

.es-step label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #cbd5e1;
}

.es-step input,
.es-step select,
.es-step textarea {
  padding: 0.55rem 0.65rem;
  border-radius: 0.45rem;
  border: 1px solid #334155;
  background: #020617;
  color: #e2e8f0;
  font: inherit;
  font-weight: 500;
}

.es-step textarea {
  resize: vertical;
}

.es-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.es-submit {
  border: 1px solid #0f766e;
  background: #0d9488;
  color: #ecfdf5;
  font: inherit;
  font-weight: 800;
  border-radius: 0.45rem;
  padding: 0.7rem 1rem;
  cursor: pointer;
}

.es-submit:hover:not(:disabled) {
  background: #14b8a6;
}

.es-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.es-status {
  margin: 0;
  min-height: 1.2em;
  font-size: 0.82rem;
  color: #94a3b8;
}

.es-status.ok {
  color: #4ade80;
}

.es-status.warn {
  color: #fde68a;
}
