.lcf-progress-container {
  background-color: #e9ecef;
  height: 10px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}

.lcf-progress-bar {
  height: 100%;
  background-color: #0073aa;
  transition: width 0.3s ease-in-out;
}

.lcf-multistep-form {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  font-family: Arial, sans-serif;
}

.lcf-multistep-form .step {
  display: none;
  transition: all 0.3s ease;
}

.lcf-multistep-form .step.active {
  display: block;
}

.lcf-multistep-form input[type="text"],
.lcf-multistep-form input[type="email"],
.lcf-multistep-form input[type="date"],
.lcf-multistep-form input[type="tel"],
.lcf-multistep-form select,
.lcf-multistep-form textarea {
  width: 100%;
  padding: 10px 14px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.lcf-multistep-form button {
  padding: 10px 20px;
  margin-top: 10px;
  margin-right: 10px;
  background-color: #0073aa;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.lcf-multistep-form button:hover {
  background-color: #005b8e;
}

.lcf-multistep-form label {
  display: block;
  margin: 8px 0 4px;
  font-weight: bold;
}

.lcf-multistep-form .checkbox-group label,
.lcf-multistep-form .radio-group label {
  display: inline-block;
  margin-right: 15px;
  font-weight: normal;
}

.lcf-multistep-form .checkbox-group,
.lcf-multistep-form .radio-group {
  margin: 10px 0;
}

#form-message {
  margin-top: 15px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 600px) {
  .lcf-multistep-form {
    padding: 15px;
  }

  .lcf-multistep-form input,
  .lcf-multistep-form select {
    font-size: 16px;
  }

  .lcf-multistep-form button {
    width: 100%;
    margin-bottom: 10px;
  }
}
