summaryrefslogtreecommitdiff
path: root/styles/auth.css
blob: 8100ecd7a0c0a2b7a5b07b0dbd976a817cd3b275 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
.form-auth {
  max-width: 330px;
  padding: 15px;
  margin: 0 auto;
}
.form-auth img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
.form-auth .form-auth-heading {
  margin-bottom: 10px;
}
.form-auth .form-control {
  position: relative;
  height: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  font-size: 16px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.form-auth .form-control:focus {
  z-index: 2;
}
.form-auth input[type="text"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.form-auth input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.form-auth button[type="submit"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}