Skip to content

Commit

Permalink
style/improve style
Browse files Browse the repository at this point in the history
  • Loading branch information
itsaartii committed Oct 21, 2024
1 parent 944b355 commit 0130519
Showing 1 changed file with 27 additions and 13 deletions.
40 changes: 27 additions & 13 deletions src/css/Auth.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@
width: auto;
max-width: 500px;
border-radius: 0.75rem;
background-color: #d75e0262;

background-color: #DFDFB0; /* Updated background */
padding: 2rem;
color: rgba(243, 244, 246, 1);
margin: auto;
}

path{
path {
color: #000;
}

Expand Down Expand Up @@ -40,14 +39,14 @@ path{
.input-group input {
width: 100%;
border-radius: 0.475rem;
border: 1px solid #ede8cf;
border: 1px solid #ccc; /* Updated border */
outline: 0;
background-color: #EDE8CA;
padding: 0.75rem 1rem;
color: rgba(243, 244, 246, 1);
color: rgba(17, 24, 39, 1);
}

#email{
#email {
border-radius: 0.475rem;
}

Expand All @@ -73,21 +72,25 @@ path{

.forgot a:hover,
.signup a:hover {
text-decoration: underline #ff8800;
text-decoration: underline #007bff; /* Updated hover color */
}

.sign {
display: block;
width: 100%;
background-color: #ff8800;
background-color: #007bff; /* Updated button background */
padding: 0.75rem;
text-align: center;
color: rgba(17, 24, 39, 1);
color: #fff;
border: none;
border-radius: 0.475rem;
font-weight: 600;
}

.sign:hover {
background-color: #0056b3; /* Updated button hover */
}

.social-message {
display: flex;
align-items: center;
Expand Down Expand Up @@ -133,14 +136,15 @@ path{
line-height: 1rem;
color: #000;
}

.password-container {
position: relative;
width: 100%;
}

.password-container input {
width: 100%;
padding-right: 40px;
padding-right: 40px;
}

.password-toggle {
Expand All @@ -151,12 +155,22 @@ path{
background: none;
border: none;
cursor: pointer;
font-size: 1.2em;
color: rgba(243, 244, 246, 1);
font-weight: 300px;
font-size: 1.2em;
color: rgba(17, 24, 39, 1); /* Updated toggle color */
display: flex;
align-items: center;
}

.password-toggle:focus {
outline: none;
}
}
#password::placeholder {
font-weight: 200px;
color: rgba(17, 24, 39, 1); /* Optional: Adjust the color if needed */
}
#email::placeholder {
font-weight: 200px;
color: rgba(17, 24, 39, 1); /* Optional: Adjust the color */
}

0 comments on commit 0130519

Please sign in to comment.