Skip to content

Commit

Permalink
Merge pull request #843 from KrishPatel1205/branch2
Browse files Browse the repository at this point in the history
[FIXED] BUG: Format inconsistent #842
  • Loading branch information
PriyaGhosal authored Oct 17, 2024
2 parents 564d9c1 + dec3eef commit a2f7d9a
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -818,14 +818,18 @@ body {
width: 100%;
padding: 0.75rem;
border: 1px solid #e2e8f0;
border-radius: 4px;
font-size: 1rem;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
margin-bottom: 15px;
border: 2px solid #d1c4e9;
border-radius: 5px;
background-color: white;
font-size: 16px;
}
.form-control:focus {
border-color: #6a1b9a; /* Purple border on focus */
outline: none;
border-color: #4299e1;
box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
background-color: #f3e5f5; /* Light purple background on focus */
}
.btn-submit {
background: #1a365d;
Expand Down Expand Up @@ -2640,7 +2644,7 @@ textarea,
select {
width: 100%;
padding: 12px;
margin-bottom: 20px;
margin-bottom: 15px;
border: 2px solid #d1c4e9; /* Light purple border */
border-radius: 5px;
background-color: white; /* White background for input fields */
Expand Down

0 comments on commit a2f7d9a

Please sign in to comment.