anim background+style form

This commit is contained in:
p2405951
2025-10-24 17:45:48 +02:00
parent ffb78723fa
commit b7ebda5633
6 changed files with 151 additions and 34 deletions
+11 -21
View File
@@ -5,9 +5,10 @@ input {
padding: 0px 10px;
border: none;
border-radius: 10px;
font-size: 16px;
font-size: 19px;
color: #111;
box-shadow: 0 2px 6px rgba(0,0,0,0.06) inset;
background: rgba(255, 255, 255, 0.5);
box-shadow: 0 2px 6px rgba(91, 90, 90, 0.06) inset;
}
input::placeholder{
@@ -27,21 +28,22 @@ input::placeholder{
/* style scoped (module) */
.loginButton {
display: inline-block;
padding: 0.55rem 1rem;
height: 55px;
border-radius: 6px;
background-color: #2b6cb0;
color: #fff;
height: 50px;
width:90%;
border-radius: 16px;
margin-bottom:3%;
margin-top:3%;
background-color: rgba(255, 255, 255, 0.335);
color: #000000;
font-weight: 600;
border: none;
box-shadow: 0 2px 6px rgba(43,108,176,0.15);
cursor: pointer;
transition: background-color 160ms ease, transform 120ms ease, box-shadow 160ms ease;
font-size: 15px;
}
.loginButton:hover {
background-color: #235a9a;
background-color: #54585e;
transform: translateY(-2px);
box-shadow: 0 6px 14px rgba(43,108,176,0.18);
}
@@ -51,18 +53,6 @@ input::placeholder{
box-shadow: 0 3px 8px rgba(43,108,176,0.12);
}
.loginButton:focus {
outline: 2px solid rgba(43,108,176,0.24);
outline-offset: 2px;
}
.loginButton:active {
transform: translateY(0);
box-shadow: 0 3px 8px rgba(43,108,176,0.12);
}
.loginButton:focus {
outline: 2px solid rgba(43,108,176,0.24);
outline-offset: 2px;
}