/* CC-02b Wave 2 - extracted from FRONTEND/01_auth/photo-verification.html */
.verification-step {
            transition: all 0.3s ease;
        }
        .verification-step.active {
            transform: scale(1.02);
            box-shadow: 0 0.625rem 1.5625rem rgba(16, 185, 129, 0.15);
        }
        .camera-frame {
            border: 0.1875rem solid #10b981;
            border-radius: 1rem;
            box-shadow: 0 0 1.25rem rgba(16, 185, 129, 0.3);
        }
        .face-detection-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        .face-box {
            border: 0.125rem solid #10b981;
            border-radius: 0.5rem;
            position: absolute;
            transition: all 0.3s ease;
        }
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        .scan-line {
            position: absolute;
            width: 100%;
            height: 0.125rem;
            background: linear-gradient(90deg, transparent, #10b981, transparent);
            animation: scan 2s infinite;
        }
