diff --git a/lib/features/auth/login_screen.dart b/lib/features/auth/login_screen.dart index 4809a1f..9868067 100644 --- a/lib/features/auth/login_screen.dart +++ b/lib/features/auth/login_screen.dart @@ -354,14 +354,20 @@ class _LoginScreenState extends State { color: InouColors.accent, borderRadius: BorderRadius.circular(16), ), - child: const Center( + child: Center( child: Text( 'i', style: TextStyle( color: Colors.white, - fontSize: 56, + fontSize: 54, fontWeight: FontWeight.w900, - fontFamily: 'sans-serif-black', + // Faux-bold effect using shadows + shadows: const [ + Shadow(offset: Offset(0.5, 0), color: Colors.white), + Shadow(offset: Offset(-0.5, 0), color: Colors.white), + Shadow(offset: Offset(0, 0.5), color: Colors.white), + Shadow(offset: Offset(0, -0.5), color: Colors.white), + ], ), ), ),