You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
513 B

.login-form {
width: 380px;
border-radius: 16px;
padding: 25px;
display: flex;
flex-direction: column;
gap: 18px;
}
.login-button {
cursor: pointer;
display: inline-flex;
width: 160px;
height: 90px;
align-items: center;
justify-content: space-around;
padding: 15px;
background-color: var(--button-background);
border-radius: 12px;
}
.login-button:hover {
background-color: var(--button-background-hover);
}
.error {
color: var(--accent-400);
}

Powered by TurnKey Linux.