.step-indicator {
  transition: all 0.3s ease;
  background: #e5e7eb;
  color: #6b7280;
}

.step-indicator.active {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: white;
}

.step-indicator.completed {
  background: #10b981;
  color: white;
}

.step-indicator.completed .step-number::before {
  content: '✓';
  font-size: 12px;
}

.step-indicator.completed .step-number {
  display: none;
}

.form-step {
  display: none;
}

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

.form-step {
  display: none;
  animation: fadeInUp 0.5s ease;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gradient-bg {
  background: linear-gradient(135deg, #0e1535 0%, #764ba2 100%);
}

.slideshow-bg {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.slideshow-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(1 1 1 / 65%), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  filter: blur(3px);
}

.bg-slide.active {
  opacity: 1;
}

.bg-slide:nth-child(1) {
  background-image: url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?w=1920&h=1080&fit=crop&q=80');
}

.bg-slide:nth-child(2) {
  background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&h=1080&fit=crop&q=80');
}

.bg-slide:nth-child(3) {
  background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920&h=1080&fit=crop&q=80');
}

.bg-slide:nth-child(4) {
  background-image: url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?w=1920&h=1080&fit=crop&q=80');
}

.bg-slide:nth-child(5) {
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&h=1080&fit=crop&q=80');
}

.modal-card {
  position: relative;
  z-index: 10;
  background: white;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transform: translateY(20px);
  animation: modalFloat 0.6s ease-out forwards;
}

@keyframes modalFloat {
  to {
    transform: translateY(0);
  }
}

.card-buildings {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: linear-gradient(rgb(0 0 0 / 63%), rgb(0 0 0 / 73%)), url('../image/authcardsvg.svg') no-repeat;
  background-size: cover;
  background-position: 60% center;
  opacity: 0.9;
}

.split-layout {
  display: flex;
  min-height: 500px;
}

.left-section {
  flex: 1;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  padding: 3rem 2rem;
}

.right-section {
  flex: 1;
  background: white;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .split-layout {
    flex-direction: column;
    min-height: auto;
  }

  .left-section {
    flex: 0 0 auto;
    max-height: 35vh;
    min-height: 200px;
    padding: 1.5rem 1rem;
    overflow: hidden;
  }

  .right-section {
    flex: 1 1 auto;
    padding: 1.5rem 1rem;
    min-height: 0;
  }

  .left-section .relative {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .left-section {
    max-height: 30vh;
    min-height: 160px;
    padding: 1rem 0.75rem;
  }

  .right-section {
    padding: 1.25rem 0.75rem;
  }
}

/* Notification styles */
.notification {
  max-width: 400px;
}

/* Primary color variables */
:root {
  --primary-color: #1e40af;
  --primary-hover: #1d4ed8;
  --secondary-color: #3b82f6;
  --accent-color: #60a5fa;
}

.bg-primary {
  background-color: var(--primary-color);
}

.hover\:bg-blue-700:hover {
  background-color: var(--primary-hover);
}

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

.border-primary {
  border-color: var(--primary-color);
}

.focus\:border-primary:focus {
  border-color: var(--primary-color);
}

.focus\:ring-primary:focus {
  --tw-ring-color: var(--primary-color);
}

/* Custom blur effect for text overlays */
.custom-blur {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
}

/* Hide step labels on mobile and tablet */
@media (max-width: 1023px) {
  .step-label {
    display: none !important;
  }
}