/* Multi-step form styles */
.multi-step-form .form-card {
  display: none;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.multi-step-form .form-card.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

/* Form styling */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #D7FF0E;
  box-shadow: 0 0 0 3px rgba(215, 255, 14, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Button styling */
.multi-step-form .button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #D7FF0E;
  color: #151515 !important;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  margin-right: 10px;
}

.multi-step-form .button:hover {
  background-color: #c8f00d;
  transform: translateY(-2px);
}

.multi-step-form .button2 {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
}

.multi-step-form .button2:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Step title styling */
.step-title {
  color: #ffffff;
  margin-bottom: 5px;
}

/* Form container styling */
#side-bar {
  background-color: #151515;
  padding: 30px;
  border-radius: 8px;
  border-top: 3px solid #D7FF0E;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin: 0 auto;
}

/* Form navigation buttons container */
.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
} 