+
+
+
+
+
+
+ {__('Demo mode active')}
+
+
+ {__(
+ 'Live institutions are not available in the demo environment. Please select MX Bank to test the connection process.',
+ )}
+
+
+
+
+ )
+}
+
+const getStyles = () => ({
+ container: {
+ display: 'flex',
+ flexDirection: 'column',
+ alignItems: 'center',
+ justifyContent: 'center',
+ textAlign: 'center',
+ paddingTop: 20,
+ } as React.CSSProperties,
+ logoContainer: {
+ position: 'relative',
+ display: 'inline-block',
+ } as React.CSSProperties,
+ icon: {
+ position: 'absolute',
+ top: '-16px',
+ right: '-16px',
+ background: 'white',
+ borderRadius: '50%',
+ },
+ title: {
+ marginBottom: '4px',
+ marginTop: '32px',
+ fontSize: '23px',
+ fontWeight: 700,
+ lineHeight: '32px',
+ textAlign: 'center',
+ },
+ body: {
+ textAlign: 'center',
+ marginBottom: '32px',
+ fontSize: '15px',
+ fontWeight: 400,
+ lineHeight: '24px',
+ } as React.CSSProperties,
+})