
body {
  font-family: system-ui, sans-serif;
  background: #0b0d12;
  color: #f5f5f7;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  max-width: 400px;
  text-align: center;
  padding: 2rem;
  background: #1a1d25;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

input[type="file"], input[type="text"] {
  display: block;
  margin: 1rem auto;
  width: 100%;
  padding: 0.6rem;
  border-radius: 8px;
  border: none;
}

button {
  background: #5b6ef5;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: #7383fa;
}

#status {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #8fa3ff;
}
