/* Submit Page Styles */
.submit-page {
  background: linear-gradient(135deg, #0f1419 0%, #1a252f 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.submit-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 153, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 153, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 153, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* Hero Section */
.submit-hero {
  text-align: center;
  padding: 4rem 0;
  margin-bottom: 4rem;
  position: relative;
  animation: fadeInUp 1s ease-out;
}

.submit-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff9900, transparent);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #ff9900 50%, #ffffff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: textShimmer 3s ease-in-out infinite;
}

@keyframes textShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-content p {
  font-size: 1.2rem;
  color: #e2e8f0;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  font-weight: 400;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.hero-stats .stat {
  text-align: center;
  padding: 1rem;
  background: rgba(35, 47, 62, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 153, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 120px;
}

.hero-stats .stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff9900, #e68900);
}

.hero-stats .stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 153, 0, 0.2);
  border-color: rgba(255, 153, 0, 0.4);
}

.hero-stats .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff9900, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.hero-stats .stat-label {
  color: #e2e8f0;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Form Section */
.submit-form-section {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.submit-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.form-container {
  background: rgba(35, 47, 62, 0.8);
  backdrop-filter: blur(15px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 153, 0, 0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff9900, #e68900, #ff9900);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.form-header {
  margin-bottom: 2rem;
  text-align: center;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #cbd5e0;
  font-size: 1.1rem;
}

.event-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  background: rgba(15, 20, 25, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 153, 0, 0.3);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff9900;
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
  transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #cbd5e0;
}

.form-group small {
  color: #cbd5e0;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.form-actions {
  text-align: center;
  margin-top: 1rem;
}

.form-note {
  color: #cbd5e0;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Guidelines Sidebar */
.guidelines-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 120px;
  animation: slideInRight 0.8s ease-out 0.6s both;
}

.guidelines-card {
  background: rgba(35, 47, 62, 0.8);
  backdrop-filter: blur(15px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 153, 0, 0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.guidelines-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 153, 0, 0.15);
  border-color: rgba(255, 153, 0, 0.4);
}

.guidelines-card h3 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.guidelines-card h3 i {
  color: #ff9900;
}

.guidelines-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guidelines-card li {
  color: #cbd5e0;
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.guidelines-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff9900;
  font-weight: bold;
}

.guidelines-card p {
  color: #cbd5e0;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.timeline-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #ff9900, #e68900);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

.timeline-content h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.timeline-content p {
  color: #cbd5e0;
  font-size: 0.9rem;
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}



.btn-outline {
  background: transparent;
  color: #ff9900;
  border: 2px solid rgba(255, 153, 0, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 153, 0, 0.1);
  border-color: #ff9900;
  color: #ffffff;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 10px;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* Success/Error Messages */
.success-message,
.error-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease-out;
}

.success-content,
.error-content {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  animation: scaleIn 0.3s ease-out;
}

.success-content i {
  font-size: 4rem;
  color: #10b981;
  margin-bottom: 1rem;
}

.error-content i {
  font-size: 4rem;
  color: #ef4444;
  margin-bottom: 1rem;
}

.success-content h3,
.error-content h3 {
  color: #232F3E;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.success-content p,
.error-content p {
  color: #6c757d;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .submit-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .guidelines-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .hero-stats .stat-number {
    font-size: 1.8rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-container {
    padding: 2rem;
  }
  
  .guidelines-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-stats .stat {
    padding: 0.75rem;
  }
  
  .form-container {
    padding: 1.5rem;
  }
}

/* —— Step-by-step submit wizard —— */
.submit-wizard .wizard-header {
  margin-bottom: 2rem;
}

.wizard-progress-wrap {
  height: 6px;
  background: rgba(15, 20, 25, 0.8);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.wizard-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ff9900, #ffa500);
  border-radius: 999px;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-community-tags-wrap {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 153, 0, 0.35);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.55);
}

.wizard-community-tags-wrap[hidden] {
  display: none !important;
}

.wizard-community-tags-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ff9900;
  margin-bottom: 0.5rem;
}

.wizard-header .wizard-community-tags {
  margin-bottom: 0;
}

.wizard-step-label {
  text-align: center;
  color: #ff9900;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.wizard-inline-error {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.55);
  border-radius: 10px;
  color: #ffb4bc;
  font-size: 0.95rem;
  line-height: 1.45;
}

.wizard-inline-error[hidden] {
  display: none !important;
}

.wizard-inline-error i {
  color: #ff6b7a;
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.wizard-inline-error.is-shake {
  animation: wizardErrorShake 0.45s ease;
}

@keyframes wizardErrorShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.wizard-step .form-group.is-invalid input,
.wizard-step .form-group.is-invalid select,
.wizard-step .form-group.is-invalid textarea,
.wizard-mode-cards.is-invalid .mode-card span {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

.wizard-terms.is-invalid {
  color: #ffb4bc;
}

.event-form-wizard {
  min-height: 320px;
}

.wizard-steps {
  position: relative;
  min-height: 280px;
}

.wizard-step {
  display: none;
  opacity: 0;
  transform: translateX(24px);
  animation: none;
}

.wizard-step.is-active,
.wizard-step.is-enter {
  display: block;
  animation: wizardStepIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.wizard-step.is-exit {
  display: block;
  animation: wizardStepOut 0.22s ease forwards;
}

@keyframes wizardStepIn {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes wizardStepOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-20px);
  }
}

.wizard-step-num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff9900;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.wizard-question {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.wizard-hint {
  color: #94a3b8;
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

.wizard-step .form-group input,
.wizard-step .form-group select,
.wizard-step .form-group textarea {
  font-size: 1.1rem;
  padding: 1rem 1.15rem;
}

.wizard-char-count {
  display: block;
  margin-top: 0.5rem;
  color: #94a3b8;
  font-size: 0.85rem;
}

.wizard-mode-select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.wizard-mode-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mode-card {
  cursor: pointer;
  margin: 0;
}

.mode-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mode-card span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem;
  background: rgba(15, 20, 25, 0.6);
  border: 2px solid rgba(255, 153, 0, 0.25);
  border-radius: 12px;
  color: #e2e8f0;
  font-weight: 600;
  transition: all 0.25s ease;
}

.mode-card span i {
  font-size: 1.5rem;
  color: #ff9900;
}

.mode-card.is-selected span,
.mode-card input:checked + span {
  border-color: #ff9900;
  background: rgba(255, 153, 0, 0.12);
  box-shadow: 0 0 20px rgba(255, 153, 0, 0.2);
}

.wizard-file-drop input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.wizard-file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  border: 2px dashed rgba(255, 153, 0, 0.4);
  border-radius: 12px;
  color: #e2e8f0;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.wizard-file-label:hover {
  border-color: #ff9900;
  background: rgba(255, 153, 0, 0.06);
}

.wizard-image-preview {
  display: none;
  max-width: 100%;
  max-height: 180px;
  margin-top: 1rem;
  border-radius: 8px;
  object-fit: cover;
}

.wizard-image-preview.is-visible {
  display: block;
}

.wizard-review {
  background: rgba(15, 20, 25, 0.5);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 153, 0, 0.2);
}

.wizard-review-list {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.wizard-review-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.5rem;
}

.wizard-review-list dt {
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 600;
}

.wizard-review-list dd {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  word-break: break-word;
}

.wizard-terms {
  color: #e2e8f0;
}

.wizard-community-picker {
  position: relative;
}

.wizard-community-search-wrap {
  position: relative;
}

.wizard-community-picker .tgk-community-pick-list {
  display: block;
  max-height: 220px;
  overflow-y: auto;
  margin: 0.65rem 0 0;
  padding: 0.5rem;
  border: 1px solid rgba(255, 153, 0, 0.35);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.6);
}

.wizard-community-picker .tgk-community-pick-item,
.wizard-community-picker .wizard-community-suggestion.tgk-community-pick-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.75rem 1rem;
  margin: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #e2e8f0;
  text-align: left;
  cursor: pointer;
  font-size: 0.95rem;
}

.wizard-community-picker .tgk-community-pick-item:hover,
.wizard-community-picker .wizard-community-suggestion.tgk-community-pick-item:hover {
  background: rgba(255, 153, 0, 0.12);
}

.wizard-community-picker .tgk-community-pick-item i,
.wizard-community-picker .wizard-community-suggestion.tgk-community-pick-item i {
  color: #ff9900;
  width: 1rem;
  text-align: center;
}

.wizard-community-picker .tgk-community-pick-empty {
  margin: 0;
  padding: 0.85rem 1rem;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.45;
}

.wizard-community-picker #event_community_search {
  width: 100%;
  box-sizing: border-box;
}

.wizard-community-search-wrap .wizard-community-suggestions {
  top: calc(100% + 4px);
}

.wizard-community-suggestion-empty {
  padding: 0.75rem 1rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

.wizard-community-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  min-height: 0;
}

.wizard-community-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.55rem 0.3rem 0.7rem;
  background: rgba(255, 153, 0, 0.15);
  border: 1px solid rgba(255, 153, 0, 0.45);
  border-radius: 999px;
  font-size: 0.9rem;
  color: #fde68a;
}

.wizard-community-tag-remove {
  border: none;
  background: transparent;
  color: #ff9900;
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
  padding: 0 0.15rem;
}

.wizard-community-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 20;
  background: #1e293b;
  border: 1px solid rgba(255, 153, 0, 0.35);
  border-radius: 8px;
  max-height: 220px;
  overflow-y: auto;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.wizard-community-suggestion {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  color: #e2e8f0;
  text-align: left;
  cursor: pointer;
  font-size: 0.95rem;
}

.wizard-community-suggestion:hover,
.wizard-community-suggestion:focus {
  background: rgba(255, 153, 0, 0.12);
  outline: none;
}

.wizard-community-suggestion i {
  color: #ff9900;
}

.wizard-community-clear {
  margin-top: 0.65rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 153, 0, 0.4);
  border-radius: 6px;
  background: transparent;
  color: #ff9900;
  cursor: pointer;
}

.wizard-community-clear:hover {
  background: rgba(255, 153, 0, 0.1);
}

.wizard-nav {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 153, 0, 0.15);
}

.wizard-btn-next {
  margin-left: auto;
}

.wizard-form-note {
  text-align: center;
  margin-top: 1rem;
}

.wizard-form-note kbd {
  background: rgba(255, 153, 0, 0.2);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

.wizard-tracking-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
  padding: 12px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
}

.wizard-tracking-box code {
  flex: 1;
  font-family: monospace;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .wizard-question {
    font-size: 1.4rem;
  }

  .wizard-mode-cards {
    grid-template-columns: 1fr;
  }

  .wizard-review-list div {
    grid-template-columns: 1fr;
  }

  .wizard-nav {
    flex-wrap: wrap;
  }

  .wizard-btn-next,
  .wizard-btn-submit {
    width: 100%;
    margin-left: 0;
  }
}