:root {
  --step-active:#22776b;
  --step-muted:#a8b3c7;
}

.btn-success {
  background: #22776b;
  border-color: #22776b;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: #dfe5ed;
}

.card {
  border: none;
}

.btn {
  min-width: 120px;
}

h1 {
  font-weight: 600;
}

.stepper {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--step-muted);
  font-weight: 600;
}
.step .dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--step-muted);
}
.step.active {
  color: var(--step-active);
}
.step.active.dot {
  border-color: var(--step-active);
  background: var(--step-active);
  color: #fff;
}

.dropzone {
  border: 2px dashed #ced4da;
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.15s ease-in-out;
  background: #fafafa;
}
.dropzone.dragover {
  border-color: #0d6efd;
  background: #eef5ff;
}

.file-list strong {
  max-width: 200px;
  display: block;
  text-align: left;
}
.file-list small {
  display: block;
  text-align: left;
}

.logo {
  width: 100%;
  max-width: 340px;
  display: block;
  margin: 0 auto 1.5rem;
}/*# sourceMappingURL=style.css.map */