@@ -314,33 +331,55 @@ export default function TopUpModal({ method, onClose, initialAmountRubles }: Top
)}
- {/* Amount input - modern design */}
+ {/* Amount input + Submit button - inline */}
-
-
setAmount(e.target.value)}
- onFocus={() => setIsInputFocused(true)}
- onBlur={() => setIsInputFocused(false)}
- onKeyDown={(e) => { if (e.key === 'Enter') { e.preventDefault(); handleSubmit() } }}
- placeholder="0"
- className="w-full h-16 px-5 pr-16 text-2xl font-bold bg-transparent text-dark-100 placeholder:text-dark-600 focus:outline-none"
- style={{ fontSize: '24px' }}
- autoComplete="off"
- autoFocus
- />
-
- {currencySymbol}
-
+
+
+ setAmount(e.target.value)}
+ onFocus={() => setIsInputFocused(true)}
+ onBlur={() => setIsInputFocused(false)}
+ onKeyDown={(e) => { if (e.key === 'Enter') { e.preventDefault(); handleSubmit() } }}
+ placeholder="0"
+ className="w-full h-14 px-4 pr-12 text-xl font-bold bg-transparent text-dark-100 placeholder:text-dark-600 focus:outline-none"
+ autoComplete="off"
+ autoFocus
+ />
+
+ {currencySymbol}
+
+
+
@@ -386,36 +425,53 @@ export default function TopUpModal({ method, onClose, initialAmountRubles }: Top
)}
- {/* Submit button */}
-