mirror of https://github.com/byecorps/id.git
24 lines
265 B
CSS
24 lines
265 B
CSS
|
|
||
|
.login-form {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
gap: 16px;
|
||
|
|
||
|
max-width: 600px;
|
||
|
margin: auto;
|
||
|
}
|
||
|
|
||
|
.login-form > * {
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
.login-form > *[type=submit] {
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
|
||
|
.passkey {
|
||
|
max-width: 600px;
|
||
|
margin: auto;
|
||
|
}
|
||
|
|