add form style

This commit is contained in:
p2405951
2025-10-24 11:45:59 +02:00
parent 387b2c32cf
commit fef249acd3
8 changed files with 177 additions and 157 deletions
+68
View File
@@ -0,0 +1,68 @@
input {
width: 100%;
height: 60px;
padding: 0px 10px;
border: none;
border-radius: 10px;
font-size: 16px;
color: #111;
box-shadow: 0 2px 6px rgba(0,0,0,0.06) inset;
}
input::placeholder{
font-size: 20px;
color: rgba(0,0,0,0.45);
}
.logButton{
display: flex;
justify-content: center;
align-items: center;
margin-top: 12px;
}
.formgroup{
margin-top:23px;
}
/* style scoped (module) */
.loginButton {
display: inline-block;
padding: 0.55rem 1rem;
height: 55px;
border-radius: 6px;
background-color: #2b6cb0;
color: #fff;
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;
transform: translateY(-2px);
box-shadow: 0 6px 14px rgba(43,108,176,0.18);
}
.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;
}
.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;
}