body {
        --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        --glass-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    }

    .main-container {
        min-height: 100vh;
        position: relative;
    }

    .overlay {
        display: flex;
        align-items: center;
    }

    /* Nouveau design glassmorphism pour le formulaire */
    .form-card {
        background: var(--glass-gradient) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 24px !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37) !important;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .form-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: var(--primary-gradient);
        opacity: 0.1;
        transform: rotate(45deg);
        z-index: -1;
    }

    .form-control {
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        color: white !important;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        background: rgba(255, 255, 255, 0.15) !important;
        border-color: rgba(255, 255, 255, 0.5) !important;
        color: white !important;
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1) !important;
    }

    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.6) !important;
    }

    .form-label {
        font-weight: 500;
        margin-bottom: 0.5rem;
        color: white !important;
    }

    /* Animation container styles */
    .animation-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 400px;
    }

    .animation-container {
        width: 100%;
        max-width: 500px;
        position: relative;
    }

    .steps-track {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        transition: transform 0.5s ease;
    }

    .step {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        color: white;
        flex-shrink: 0;
    }

    .step.active {
        opacity: 1;
        transform: translateY(0);
    }

    .step-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background: var(--secondary-gradient);
        border-radius: 50%;
        font-weight: bold;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        box-shadow: 0 4px 20px rgba(240, 147, 251, 0.4);
    }

    .step-title {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        background: linear-gradient(to right, #fff, #f093fb);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .step-description {
        font-size: 1.1rem;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
    }
    /* Button styling */
    .btn-submit {
        background: var(--secondary-gradient);
        border: none;
        color: white;
        padding: 12px 30px;
        font-weight: 600;
        border-radius: 30px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(240, 147, 251, 0.3);
    }

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 30px rgba(240, 147, 251, 0.4);
        color: white;
    }

    /* Dots indicator */
    .dots-indicator {
        display: none;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .dot.active {
        background: var(--secondary-gradient);
        width: 24px;
        border-radius: 4px;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .overlay {
            padding: 1rem 0 !important;
        }

        .form-card {
            margin: 0.5rem;
        }

        .step-title {
            font-size: 1.5rem;
        }

        .step-description {
            font-size: 1rem;
        }

        /* Horizontal scroll on mobile */
        .animation-container {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            scroll-snap-type: x mandatory;
            padding-bottom: 1rem;
        }

        .steps-track {
            flex-direction: row;
            width: max-content;
        }

        .step {
            width: 280px;
            scroll-snap-align: center;
            margin: 0 0.5rem;
        }

        /* Show dots on mobile */
        .dots-indicator {
            display: flex;
        }

        /* Hide scrollbar but keep functionality */
        .animation-container::-webkit-scrollbar {
            height: 4px;
        }

        .animation-container::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
        }

        .animation-container::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
        }
    }

    /* Floating animation */
    @keyframes floating {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0px); }
    }

    .floating {
        animation: floating 3s ease-in-out infinite;
    }

    /* uploader design */
.image-upload-container {
  position: relative;
  width: 150px;
  height: 150px;
  margin-bottom: 15px;
  background-color: black;
}

.upload-preview {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.upload-preview img {
  max-width: 40px;
  max-height: 40px;
  margin-bottom: 10px;
}

.upload-preview img.preview-active {
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  object-fit: cover;
}

.upload-text {
  font-size: 10px;
  font-weight: bold;
  color: white;
  margin: 0 5px 5px;
}

.upload-subtext {
  font-size: either;
  color: #5f6368;
  margin: 0 5px;
  font-size: 8px;
}

.photo-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}

.text-hidden {
  display: none;
}
/* uploader design */