diff --git a/style.css b/style.css index e00b8c3..8ee184a 100644 --- a/style.css +++ b/style.css @@ -1,3 +1,4 @@ + body { font-family: Arial, sans-serif; background-color: #001f3f; @@ -5,9 +6,9 @@ body { margin: 0; padding: 20px; display: flex; - justify-content: flex-start; - align-items: flex-start; - flex-direction: column; + justify-content: flex-start; + align-items: flex-start; + flex-direction: column; } form { @@ -24,20 +25,25 @@ input, textarea { margin-top: 5px; padding: 8px; font-size: 16px; - color: #001f3f !important; + color: #001f3f; + background-color: #fff; + border-radius: 5px; } - button { cursor: pointer; background-color: #4CAF50; color: white; border: none; - padding: 10px; + padding: 10px 20px; + border-radius: 12px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); + transition: all 0.3s ease; } button:hover { background-color: #45a049; + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); } body, h1, p, label, a, button {