Changed login and signup color themes

This commit is contained in:
2024-02-27 16:41:54 -05:00
parent 1c4ce06064
commit a47e6fedc3
5 changed files with 27 additions and 18 deletions

View File

@ -19,7 +19,7 @@
.login-container .header h1 {
margin-top: 3rem;
font-size: 2.5rem;
color: #2c1308;
color: $accent-color;
}
.login-container .login-form {
width: 75%;
@ -55,15 +55,15 @@
left: 0;
padding: 15px 0px 10px;
pointer-events: none;
color: #907163;
color: black;
font-size: 1.19em;
letter-spacing: 0.5px;
transition: 0.5s;
}
.login-form .input-box input:valid ~ span,
.login-form .input-box input:focus ~ span {
color: #2c1308;
font-size: 1rem;
color: rgb(94, 93, 93);
font-size: 0.9rem;
transform: translateY(-30px);
font-weight: 400;
}
@ -73,7 +73,7 @@
bottom: 0;
width: 100%;
height: 2px;
background: #907163;
background: $auth-inputs;
border-radius: 4px;
overflow: hidden;
transition: 0.5s;
@ -106,7 +106,7 @@
cursor: pointer;
font-size: 1.1rem;
font-weight: 600;
background-color: #582b17;
background-color: $accent-color;
}
.login-form .go-to-signup {
color: #8f8f8f;
@ -118,7 +118,7 @@
text-decoration: underline;
}
.login-form .go-to-signup a:hover {
color: #fff;
color: black;
transition: all 0.2s;
}
.login-container .return {