diff --git a/app/views/pay/index.html.erb b/app/views/pay/index.html.erb index 4048164..1a3e391 100644 --- a/app/views/pay/index.html.erb +++ b/app/views/pay/index.html.erb @@ -412,10 +412,10 @@ $(document).on('turbolinks:load', function() { /* Clean, minimal form controls */ .form-control { - border-radius: 0.5rem; - border: 1px solid #dee2e6; - padding: 0.625rem 0.875rem; - font-size: 0.95rem; + border-radius: 0.75rem; + border: 2px solid #e9ecef; + padding: 0.75rem 1rem; + font-size: 1rem; transition: all 0.2s ease; } @@ -444,13 +444,14 @@ $(document).on('turbolinks:load', function() { /* Button styling */ .btn { - border-radius: 0.5rem; - font-weight: 500; + border-radius: 0.75rem; + font-weight: 600; transition: all 0.2s ease; + padding: 0.75rem 1.5rem; } .btn:hover { - transform: translateY(-1px); - box-shadow: 0 2px 8px rgba(0,0,0,0.15); + transform: translateY(-2px); + box-shadow: 0 4px 12px rgba(0,0,0,0.15); }