/* register.css — CSS extrait de register.php (Phase 4) */
/* Modal vérification d'âge : voir css/app.css (section PAGES AUTH) */

        /* Cacher le contenu principal par défaut */
        .auth-container {
            display: none;
        }

        .auth-container.show {
            display: flex;
            animation: fadeInUp 0.5s ease-out;
        }

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

        /* Styles pour les suggestions ville (carte : voir app.css .auth-body .register-map) */
        .register-city-search .global-search-wrapper {
            display: flex;
            align-items: stretch;
            background: var(--surface, #fff);
            border: 1px solid var(--border, #e2e8f0);
            border-radius: var(--r-pill, 12px);
            overflow: hidden;
            box-shadow: var(--shadow-sm, 0 2px 4px -1px rgba(0, 0, 0, 0.1));
            position: relative;
            min-height: 48px;
        }

        .register-city-search .global-search-input-container {
            flex: 1;
            position: relative;
            display: flex;
            align-items: center;
            padding: 0 0.75rem;
            min-width: 0;
            overflow: hidden;
        }

        .register-city-search .global-search-icon {
            color: var(--text-muted, #6b7280);
            font-size: 1rem;
            margin-right: 0.5rem;
        }

        .register-city-search .global-search-input {
            flex: 1;
            padding: 0.75rem 0;
            border: none;
            background: transparent;
            font-size: 0.9375rem;
            color: var(--text, #1f2937);
            outline: none;
            font-weight: 500;
            min-width: 0;
            width: 100%;
        }

        .register-city-search .global-search-reset-inline {
            position: absolute;
            right: 0.5rem;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 2;
            padding: 0;
            transition: background-color 0.2s ease;
            color: var(--text-muted, #6b7280);
            font-size: 0.875rem;
        }
        .register-city-search .global-search-reset-inline.show {
            display: flex !important;
        }

        .register-city-search .global-search-actions {
            display: flex;
            align-items: stretch;
            border-left: 1px solid var(--border, #e2e8f0);
            flex-shrink: 0;
            min-width: 48px;
        }

        .register-city-search .global-search-btn {
            padding: 0.75rem 0.5rem;
            border: none;
            background: transparent;
            color: var(--text-soft, #374151);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            min-width: 48px;
            width: 48px;
            flex-shrink: 0;
            transition: all 0.2s ease;
        }
        .register-city-search .global-search-btn:hover {
            background: var(--brand-soft, rgba(255, 56, 92, 0.08));
        }
        .register-city-search .global-location-btn {
            color: #667eea;
        }

        .register-city-search .global-city-suggestions-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: transparent;
            z-index: 99999;
            display: none;
            pointer-events: none;
        }

        .register-city-search .global-city-suggestions-content {
            background: white;
            border-radius: 12px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            max-height: 400px;
            overflow-y: auto;
            border: 1px solid #e5e7eb;
            pointer-events: auto;
        }

        .register-city-search .global-city-suggestion {
            display: flex;
            align-items: center;
            padding: 1rem 1.25rem;
            cursor: pointer;
            transition: all 0.2s ease;
            border-bottom: 1px solid #f3f4f6;
            background: white;
        }
        .register-city-search .global-city-suggestion:last-child {
            border-bottom: none;
        }
        .register-city-search .global-city-suggestion:hover {
            background: #f8fafc;
        }
        .register-city-search .global-city-suggestion-icon {
            margin-right: 1rem;
            color: #3b82f6;
            font-size: 1.125rem;
            width: 24px;
            text-align: center;
        }
        .register-city-search .global-city-suggestion-main {
            font-weight: 600;
            color: #1f2937;
            font-size: 0.9375rem;
            margin-bottom: 0.25rem;
        }
        .register-city-search .global-city-suggestion-secondary {
            font-size: 0.8125rem;
            color: #6b7280;
            font-weight: 500;
        }

        /* Bouton de géolocalisation */
        .geolocation-button {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            border: none;
            border-radius: 8px;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .geolocation-button:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
        }

        .geolocation-button:active {
            transform: translateY(-50%) scale(0.95);
        }

        .geolocation-button.loading {
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            from { transform: translateY(-50%) rotate(0deg); }
            to { transform: translateY(-50%) rotate(360deg); }
        }

        /* .pseudo-status → css/app.css (section Feedback unifié) */

        /* Captcha styles */
        .captcha-container {
            background: #f8fafc;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            padding: 15px;
        }

        .captcha-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
            font-weight: 600;
            color: #374151;
        }

        .refresh-captcha {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            border: none;
            border-radius: 6px;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .refresh-captcha:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
        }

        .refresh-captcha:active {
            transform: scale(0.95);
        }
    
