diff --git a/form.html b/form.html index 9b52a66..9356128 100644 --- a/form.html +++ b/form.html @@ -15,10 +15,22 @@ max-width: 600px; margin: 0 auto; } + h3 { + font-size: 1.5em; /* Adjust the font size for heading tags */ + font-weight: bold; + color: #091E3E; +} .form-group { margin-bottom: 15px; } + label { + display: block; + margin-bottom: 5px; + font-weight: bold; /* Adjust the font weight for label tags */ + color: #091E3E; /* Adjust the color for label tags */ +} + .form-group label { display: block; @@ -31,12 +43,19 @@ padding: 8px; border: 1px solid #ccc; border-radius: 4px; + transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out; } .form-group textarea { resize: vertical; } + .form-group input:focus, + .form-group textarea:focus { + border-color: #091E3E; + box-shadow: 0 0 5px rgba(9, 30, 62, 0.5); + } + .form-group button { background-color: #4CAF50; color: white; @@ -187,19 +206,19 @@