
body {
  font-family: "Segoe UI", sans-serif;
  background: #f7f9fc;
  margin: 0;
  padding: 0;
}

#multi-step-form {
  max-width: 550px;
  background: #fff;
  margin: 40px auto;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

#multi-step-form h2 {
  font-size: 1.5rem;
  color: #2a2a2a;
  margin-bottom: 10px;
  text-align: center;
}

#multi-step-form p {
  text-align: center;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

#multi-step-form input[type="text"],
#multi-step-form input[type="email"],
#multi-step-form input[type="date"],
#multi-step-form input[type="tel"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  box-sizing: border-box;
}

#multi-step-form label {
  display: block;
  margin: 10px 0;
  font-size: 1rem;
  color: #333;
}

#multi-step-form input[type="radio"],
#multi-step-form input[type="checkbox"] {
  margin-right: 10px;
}

#multi-step-form button {
  background-color: #0073e6;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  display: block;
  margin: 20px auto 0;
  transition: background-color 0.3s ease;
}

#multi-step-form button:hover {
  background-color: #005bb5;
}

.step {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

.center {
  text-align: center;
}

#progress-bar {
  margin-bottom: 20px;
}

#progress-bar > div {
  height: 8px;
  background: #ddd;
  border-radius: 5px;
}

#bar {
  width: 0%;
  height: 100%;
  background: #0073e6;
  border-radius: 5px;
  transition: 0.3s;
}

@media (max-width: 600px) {
  #multi-step-form {
    padding: 20px;
  }

  #multi-step-form h2 {
    font-size: 1.3rem;
  }
}
