body {
  font-family: Arial, sans-serif;
  background: #f4f6f8;
}

.container {
  max-width: 500px;
  margin: 40px auto;
  background:white;
  padding: 25px;
  border: 2px solid black;
  border-radius: 10px;
}

input, select, button {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  font-size:16px;
}

button {
  background: #2563eb;
  color: white;
  border: none;
  cursor: pointer;
}

.hidden {
  display: none;
}

.info-box {
  background: #eef2ff;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.important {
  border-left: 4px solid red;
}

.status {
  margin-top: 15px;
  font-weight: bold;
}
.status-box {
  text-align: center;
  margin-top: 20px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e5e7eb;
  border-top: 4px solid #2563eb;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-step.exit-left {
  opacity: 0;
  transform: translateX(-20px);
}
#stepStatus::after {
  content: " ⏳";
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--brand-bg);
  color: var(--brand-text);
}

/* BRAND HEADER */
.brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.logo{
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--brand-primary);
  color:blue;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
}

.brand-text h3 {
  margin: 0;
  font-size: 18px;
}

.brand-text span {
  font-size: 12px;
  color: var(--brand-muted);
}
.file-label {
  display: inline-block;
  padding: 10px 18px;
  background-color: whitesmoke;
  color: white;
   border: 2px solid black;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
}

.file-label input[type="file"] {
  display: none;
}

.file-label:hover {
  background-color: white;
}

.file-name {
  margin-top: 8px;
  font-size: 14px;
  color: #374151;
}
p {
  margin-bottom: 4px;
  }