@import url("base-dHOrOtnkGCdV3lQPunjNWYmy8Q5R7q.css");

.frm-hero-section {
  padding: var(--space-16) 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  position: relative;
  overflow: hidden;
  margin-top: var(--space-20);
}

.frm-hero-content {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  position: relative;
  z-index: 2;
}

.frm-hero-text {
  flex: 1;
}

.frm-hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: var(--space-4);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.frm-hero-text p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  max-width: 600px;
}

.frm-hero-stats {
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.frm-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.frm-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-primary);
}

.frm-stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.frm-hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.frm-hero-image img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.frm-hero-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--brand-primary);
  opacity: 0.1;
  filter: blur(40px);
}

.frm-shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  background: var(--brand-primary);
}

.frm-shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: 50px;
  background: var(--brand-secondary);
}

.frm-shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--brand-accent);
}

.frm-hero-cards {
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-12);
  position: relative;
  z-index: 2;
}

.frm-hero-card {
  flex: 1;
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.frm-hero-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.frm-card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: white;
  font-size: 1.5rem;
}

.frm-hero-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}

.frm-hero-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.frm-form-section {
  padding: var(--space-16) 0;
  background-color: var(--bg-primary);
}

.frm-form-container {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

.frm-progress-container {
  margin-bottom: var(--space-8);
}

.frm-progress-bar {
  height: 8px;
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  position: relative;
  overflow: hidden;
}

.frm-progress {
  position: absolute;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
  width: 16.66%;
}

.frm-step-indicators {
  display: flex;
  justify-content: space-between;
}

.frm-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
}

.frm-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-tertiary);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: var(--space-2);
  transition: all var(--transition-normal);
}

.frm-step.frm-active .frm-step-number {
  background-color: var(--brand-primary);
  color: white;
}

.frm-step-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color var(--transition-normal);
}

.frm-step.frm-active .frm-step-label {
  color: var(--brand-primary);
  font-weight: 600;
}

.frm-form-type-selector {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: var(--space-4);
}

.frm-type-btn {
  flex: 1;
  padding: var(--space-4);
  border: 2px solid var(--border-medium);
  border-radius: var(--radius-md);
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.frm-type-btn:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.frm-type-btn.frm-active {
  border-color: var(--brand-primary);
  background-color: var(--brand-primary);
  color: white;
}

.frm-type-btn.frm-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.frm-type-btn.frm-disabled:hover {
  border-color: var(--border-medium);
  color: var(--text-secondary);
}

.frm-multi-step-form {
  position: relative;
}

.frm-form-step {
  display: none;
}

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

.frm-form-step h2 {
  font-size: 1.75rem;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.frm-step-description {
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.frm-form-group {
  margin-bottom: var(--space-6);
}

.frm-form-group label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 500;
  color: var(--text-secondary);
}

.frm-required {
  color: var(--error);
}

input[type="text"],
input[type="url"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-outline);
}

.frm-select-container {
  position: relative;
  width: 100%;
}

.frm-search-select {
  position: relative;
}

.frm-search-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
}

.frm-search-input:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-outline);
}

.frm-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 10;
  display: none;
}

.frm-select-dropdown.frm-active {
  display: block;
}

.frm-select-option {
  padding: var(--space-2) var(--space-4);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.frm-select-option:hover {
  background-color: var(--bg-tertiary);
}

.frm-select-option.frm-selected {
  background-color: var(--bg-tertiary);
  font-weight: 500;
}

.frm-selected-option {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.frm-selected-option::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--text-secondary);
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
}

.frm-selected-option:hover {
  border-color: var(--brand-primary);
}

.dark .frm-select-dropdown {
  background-color: var(--bg-secondary);
  border-color: var(--border-medium);
}

.dark .frm-select-option:hover {
  background-color: var(--bg-tertiary);
}

.frm-error-message {
  color: var(--error);
  font-size: 0.875rem;
  margin-top: var(--space-1);
  min-height: 20px;
}

.frm-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.frm-checkbox-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background-color: var(--bg-primary);
  transition: all var(--transition-fast);
}

.frm-checkbox-item:hover {
  border-color: var(--brand-primary);
}

.frm-checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.frm-checkbox-item label {
  margin-bottom: 0;
  cursor: pointer;
}

.frm-custom-sizes-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.frm-custom-size-tag {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
}

.frm-custom-size-tag button {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

.frm-custom-size-tag button:hover {
  color: var(--error);
}

.frm-input-group {
  display: flex;
  gap: var(--space-2);
}

.frm-custom-size-input {
  flex: 1;
}

.frm-input-with-icon {
  position: relative;
}

.frm-input-with-icon i {
  position: absolute;
  left: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.frm-input-with-icon input {
  padding-left: var(--space-10);
}

.frm-file-upload {
  position: relative;
  margin-bottom: var(--space-2);
}

.frm-file-upload input[type="file"] {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

.frm-file-upload-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background-color: var(--bg-tertiary);
  border: 1px dashed var(--border-medium);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.frm-file-upload-label:hover {
  background-color: var(--bg-primary);
  border-color: var(--brand-primary);
}

.frm-file-name {
  margin-top: var(--space-2);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.frm-file-format-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: var(--space-1);
}

.frm-logo-preview-container,
.frm-banner-preview-container {
  margin-top: var(--space-4);
  width: 100%;
  display: flex;
  justify-content: center;
}

#frm-logo-preview,
#frm-banner-preview {
  max-width: 300px;
  max-height: 300px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

#frm-logo-preview img,
#frm-banner-preview img {
  max-width: 100%;
  max-height: 100%;
}

.frm-form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-8);
}

.frm-btn {
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.frm-btn-primary {
  background-color: var(--brand-primary);
  color: white;
}

.frm-btn-primary:hover {
  background-color: var(--brand-primary-dark);
}

.frm-btn-outline {
  background-color: transparent;
  border: 1px solid var(--border-medium);
  color: var(--text-secondary);
}

.frm-btn-outline:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.frm-btn-outline-sm {
  background-color: transparent;
  border: 1px solid var(--border-medium);
  color: var(--text-secondary);
  padding: var(--space-2) var(--space-3);
  font-size: 0.875rem;
}

.frm-btn-outline-sm:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.frm-review-section {
  background-color: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.frm-review-section h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: var(--space-2);
}

.frm-review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.frm-review-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.frm-review-item.frm-full-width {
  grid-column: span 2;
}

.frm-review-label {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.frm-review-value {
  color: var(--text-primary);
}

.frm-edit-section-btn {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  background: none;
  border: none;
  color: var(--brand-primary);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: var(--space-1);
  cursor: pointer;
}

.frm-edit-section-btn:hover {
  text-decoration: underline;
}

.frm-terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.frm-terms-checkbox input[type="checkbox"] {
  margin-top: 4px;
}

.frm-terms-checkbox label {
  margin-bottom: 0;
  font-size: 0.875rem;
}

.frm-terms-checkbox a {
  color: var(--brand-primary);
  text-decoration: underline;
}

.frm-success-message {
  text-align: center;
  padding: var(--space-8) var(--space-4);
}

.frm-success-icon {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: var(--space-4);
}

.frm-success-message h2 {
  font-size: 2rem;
  margin-bottom: var(--space-4);
}

.frm-success-message p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

.frm-verification-cta {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-8);
}

.frm-verification-cta h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
}

.frm-verification-cta p {
  font-size: 1rem;
  margin-bottom: var(--space-4);
}

.frm-success-actions {
  display: flex;
  justify-content: center;
}

@media (max-width: 992px) {
  .frm-hero-content {
    flex-direction: column;
  }

  .frm-hero-text h1 {
    font-size: 2.5rem;
  }

  .frm-hero-cards {
    flex-direction: column;
  }

  .frm-step-indicators {
    display: none;
  }

  .frm-review-grid {
    grid-template-columns: 1fr;
  }

  .frm-review-item.frm-full-width {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .frm-hero-text h1 {
    font-size: 2rem;
  }

  .frm-hero-stats {
    flex-direction: column;
    gap: var(--space-4);
  }

  .frm-form-container {
    padding: var(--space-4);
  }

  .frm-checkbox-group {
    flex-direction: column;
    gap: var(--space-2);
  }

  .frm-form-navigation {
    flex-direction: column;
    gap: var(--space-3);
  }

  .frm-btn {
    width: 100%;
    justify-content: center;
  }
}
