1.dokuwiki form {
2    input,
3    button,
4    select {
5        box-sizing: border-box;
6        height: 2rem;
7        line-height: 1.5em;
8        border: 1px solid @ini_border;
9        border-radius: 2px;
10        outline: none;
11
12        background-color: @ini_background;
13        color: @ini_text;
14
15        &:active,
16        &:focus {
17            border: 1px solid @ini_highlight;
18        }
19    }
20
21    input[type=button],
22    input[type=submit],
23    button {
24        color: @ini_text;
25        background-color: @ini_accent;
26        cursor: pointer;
27    }
28
29    input[type=file] {
30        border: none;
31    }
32
33    input[type=checkbox],
34    input[type=radio] {
35        width: 1.25rem;
36        height: 1.25rem;
37    }
38}
39
40#dw__login label[for="remember__me"] {
41    display: block;
42    text-align: left;
43    margin-left: 0;
44    padding-left: 50%;
45}
46
47@media screen and (max-width: @ini_phone_width) {
48    .dokuwiki form label.block {
49        text-align: left;
50
51        span {
52            text-align: left;
53        }
54
55        input.edit,
56        select {
57            width: 100%
58        }
59
60    }
61
62    #dw__login label[for="remember__me"] {
63        line-height: 1.25rem;
64        margin-bottom: 1rem;
65        padding-left: 0;
66    }
67}
68