body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-image: url('bk.png'); /* Local file */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(3px);
}


.container {
  width: 100%;
  max-width: 600px;
  padding: 10px;
}

.wizard-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 20px;
  transition: all 0.3s ease-in-out;
}

h2 {
  text-align: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 18px;
  margin-top: 10%;
}

.step-indicators {
  display: flex;
  justify-content: space-around;
  margin-bottom: 15px;
}

.step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ccc;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.3s ease;
}

.step.active {
  background-color: #007bff;
  color: white;
}

.step.completed {
  background-color: #28a745;
  color: white;
}

.step-labels {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
  font-size: 13px;
  color: #eee;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-group {
  margin-bottom: 12px;
}

label {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="file"],
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  color: #000;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #007bff;
  background-color: rgba(255, 255, 255, 0.85);
}

.buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  gap: 10px;
}

.buttons button {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background-color: #007bff;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.buttons button:hover {
  background-color: #0056b3;
}

#selectorIdSection {
  margin-bottom: 20px;
  background-color: rgba(249, 206, 206, 0.37);
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.error-message {
  color: #ff4d4d;
  font-size: 13px;
  margin-top: 5px;
}

.success-message {
  color: #28a745;
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 600px) {
  .container {
    max-width: 95%;
  }

  .wizard-card {
    padding: 15px;
  }

  .step {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  h2 {
    font-size: 18px;
  }

  .step-labels {
    font-size: 11px;
  }

  .buttons {
    flex-direction: column;
  }

  .buttons button {
    width: 100%;
  }
}
.progress-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  margin-top: 30px;
}

.progress-container .step {
  text-align: center;
  width: 50%;
  position: relative;
  z-index: 2;
}

.progress-container .step i {
  font-size: 24px;
  background: #dee2e6;
  padding: 12px;
  border-radius: 50%;
  transition: all 0.4s ease;
  color: #495057;
}

.progress-container .step span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #495057;
}

.progress-container .step.active i {
  background-color: #0d6efd;
  color: white;
  transform: scale(1.2);
}

.progress-container .step.completed i {
  background-color: #198754;
  color: white;
}

.progress-line {
  position: absolute;
  top: 20px;
  left: 0;
  height: 4px;
  background-color: #0d6efd;
  z-index: 1;
  transition: width 0.5s ease;
  width: 0;
}
