/* Custom styles for Registration Wizard */
:root {
  --input-bg-color: #faf9f8;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-control {
  width: 100%;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-size: 1rem;
}
.form-control.form-control-sm {
  min-height: calc(1.5em + 0.5rem + var(--bs-border-width) * 2);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}

select.form-control-sm {
  appearance: auto;
}

.form-text {
  font-size: 0.875rem;
  color: var(--gray-color);
  margin-top: 0.25rem;
}

.required::after {
  content: " *";
  color: var(--accent-color);
}

.checkbox-label {
  display: flex;
  align-items: center;
}

.checkbox-label .form-check {
  display: flex;
  align-items: center;
}

.form-check-label {
  cursor: pointer;
}

.checkbox-label .form-check-input {
  margin-right: 0.5rem;
  margin-top: -0.5rem;
}

form {
  margin-bottom: 40px;
}
form .choices {
  margin-bottom: 0;
  background-color: var(--white);
}
form .choices .choices__inner {
  background-color: var(--white);
}

.form-floating > label {
  padding: 0.2rem 0.75rem;
  font-size: 12px;
  color: var(--black);
  z-index: 0;
  font-weight: bold;
}
.form-floating.form-floating-textarea textarea {
  height: auto !important;
}
.form-floating.form-floating-rich_text_editor, .form-floating.form-floating-image_uploader, .form-floating.form-floating-color, .form-floating.form-floating-list--single, .form-floating.form-floating-password {
  margin-top: 40px;
}
.form-floating.form-floating-rich_text_editor > label, .form-floating.form-floating-image_uploader > label, .form-floating.form-floating-color > label, .form-floating.form-floating-list--single > label, .form-floating.form-floating-password > label {
  top: -24px;
}
.form-floating.form-floating-choice > label, .form-floating.form-floating-entity > label {
  z-index: 1;
  top: 0;
}
.form-floating.form-floating-choice .choices__inner, .form-floating.form-floating-entity .choices__inner {
  padding-top: 18px;
}
.form-floating .form-control,
.form-floating .rich-text-editor,
.form-floating .choices__inner {
  background: var(--input-bg-color) !important;
}
.form-floating .rich-text-editor span {
  background: var(--input-bg-color) !important;
}

textarea.form-control.form-control-sm {
  min-height: 120px;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.d-none {
  display: none;
}

a.text-white {
  color: rgba(255, 255, 255, 0.5) !important;
}
a.text-white:hover {
  color: rgb(255, 255, 255) !important;
  text-decoration: none;
}

/* Purple Gradient Background */
.purple-gradient-bg {
  background: linear-gradient(180deg, #53357F 0%, #7A00D8 100%);
  color: white;
}

/* Logo Placeholder */
.logo-placeholder {
  width: 240px;
}
.logo-placeholder img {
  width: 240px;
}

/* Illustration Container */
.illustration-container {
  margin-bottom: 2rem;
}

/* Purchase Button */
.btn-purchase {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-purchase:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  color: white;
}

/* Form Container */
.form-container {
  max-width: 600px;
  margin: 0 auto;
}

/* Step Indicator */
.step-indicator {
  color: #7A00D8;
  font-weight: 600;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* Form Title */
.form-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Form Controls */
.form-control, .form-select {
  border-radius: 6px;
  padding: 0.75rem;
  border: 1px solid #ddd;
}

.form-control:focus, .form-select:focus {
  border-color: #7A00D8;
  box-shadow: 0 0 0 0.25rem rgba(122, 0, 216, 0.25);
}

/* Terms Link */
.terms-link {
  color: #7A00D8;
  text-decoration: none;
  font-weight: 500;
}

.terms-link:hover {
  text-decoration: underline;
}

/* Checkbox styling */
.form-check-input:checked {
  background-color: #7A00D8;
  border-color: #7A00D8;
}

/* Next Button */
.btn-next {
  background-color: #7A00D8;
  color: white;
  border-radius: 6px;
  padding: 0.75rem 2rem;
  font-weight: 500;
  border: none;
  box-shadow: 0 4px 6px rgba(122, 0, 216, 0.2);
  transition: all 0.3s ease;
}

.btn-next:hover {
  background-color: #6700B8;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(122, 0, 216, 0.3);
  color: white;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .purple-gradient-bg {
    min-height: 50vh;
  }
  .purple-gradient-bg.mini {
    height: 120px !important;
    min-height: 120px !important;
  }
  .purple-gradient-bg.mini .logo-placeholder {
    margin: auto;
  }
  .illustration-container svg {
    width: 120px;
    height: 120px;
  }
}

/*# sourceMappingURL=style.css-JnF7RaF.map */
