

.form-step {
  display: none;
}

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

.stripe-field {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: white;
  border-radius: 8px !important;
  box-shadow: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.stripe-field.StripeElement--focus {
  outline: none;
  border-color: #0a143f;
}

.stripe-field.StripeElement--invalid {
  border-color: var(--light-mehron);
  box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
}

.total-field-label {
  font-size: 18px;
  padding-bottom: 4px;
  font-weight: 600;
}

.progress-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.progress-dots .dot {
  width: 40px;
  height: 4px;
  border-radius: 10px;
  background-color: #ccc;
  transition: background-color 0.3s;
}

.progress-dots .dot.active {
  background-color: #9c2941;
  /* Same as your theme color */
}


@media (max-width: 575px) {
  .form-container {
    padding: 15px;
  }
}

.page-container {
  justify-content: space-between !important;
}