62 lines
1.1 KiB
CSS
62 lines
1.1 KiB
CSS
:global(.glassCard) {
|
|
--glass-bg: #ffffff9f;
|
|
}
|
|
|
|
input {
|
|
width: 100%;
|
|
height: 60px;
|
|
padding: 0px 10px;
|
|
border: none;
|
|
border-radius: 10px;
|
|
font-size: 19px;
|
|
color: #111;
|
|
background: var(--glass-bg);
|
|
box-shadow: 0 2px 6px rgba(91, 90, 90, 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;
|
|
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;
|
|
cursor: pointer;
|
|
transition: background-color 160ms ease, transform 120ms ease, box-shadow 160ms ease;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.loginButton:hover {
|
|
background-color: #54585e;
|
|
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);
|
|
}
|
|
|
|
|
|
|
|
|