31 lines
557 B
CSS
31 lines
557 B
CSS
#authentication>form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#authentication>form>input:is([type="text"], [type="password"]) {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
#authentication>form>input:last-child {
|
|
margin-bottom: unset;
|
|
}
|
|
|
|
#authentication>form>.submit {
|
|
margin-top: 6px;
|
|
display: flex;
|
|
}
|
|
|
|
#authentication>form>.submit>label {
|
|
padding: 10px 20px;
|
|
border: unset;
|
|
border-radius: 3px 0 0 3px;
|
|
}
|
|
|
|
#authentication>form>.submit>input {
|
|
padding: 10px 20px;
|
|
flex-grow: 1;
|
|
border: unset;
|
|
border-radius: 0 3px 3px 0;
|
|
}
|