.mobile-app {
            padding-bottom: 45px;
        }

        .form-group {
            margin-bottom: 22px;
        }

        .camera-flash {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: white;
            z-index: 99999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.1s ease-out;
        }
        .camera-flash.active {
            opacity: 1;
            transition: none;
        }
