body {
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: white;
  text-align: center;
}

.container {
  margin-top: 80px;
}

input {
  padding: 10px;
  width: 280px;
  border-radius: 8px;
  border: none;
}

button {
  padding: 10px 20px;
  margin: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: #22c55e;
  color: black;
  font-weight: bold;
}

button:hover {
  opacity: 0.8;
}

/* Anti-UX 😄 */
button:nth-child(1):hover {
  transform: translateX(10px);
}

.progress {
  width: 300px;
  height: 10px;
  background: #334155;
  margin: 30px auto;
  border-radius: 10px;
}

#progressBar {
  height: 100%;
  width: 100%;
  background: #ef4444;
  border-radius: 10px;
  transition: width 1s;
}
