1
|
.login {
|
2
|
height: calc(100% - 45px);
|
3
|
color: $white;
|
4
|
|
5
|
.container {
|
6
|
height: 100%;
|
7
|
align-content: center;
|
8
|
}
|
9
|
|
10
|
h1 {
|
11
|
margin: 0;
|
12
|
font-size: 0;
|
13
|
}
|
14
|
|
15
|
.card-header {
|
16
|
padding: 0;
|
17
|
}
|
18
|
|
19
|
.card {
|
20
|
width: 400px;
|
21
|
height: 380px;
|
22
|
margin-top: auto;
|
23
|
margin-bottom: auto;
|
24
|
border-radius: 10px;
|
25
|
background: $primary;
|
26
|
border: 2px solid $primary;
|
27
|
|
28
|
@include media-breakpoint-down(xs) {
|
29
|
width: auto;
|
30
|
height: 350px;
|
31
|
}
|
32
|
|
33
|
.form-control {
|
34
|
border-color: #F2F2F2;
|
35
|
background-color: #F2F2F2;
|
36
|
}
|
37
|
}
|
38
|
|
39
|
.input-group-prepend span {
|
40
|
padding-right: 18px;
|
41
|
padding-left: 18px;
|
42
|
border-color: $terciary;
|
43
|
color: #F2F2F2;
|
44
|
background: $terciary;
|
45
|
}
|
46
|
}
|
47
|
|
48
|
.login-form-wrapper {
|
49
|
display: flex;
|
50
|
align-items: center;
|
51
|
justify-content: center;
|
52
|
height: 100%;
|
53
|
}
|
54
|
|
55
|
.login-logo {
|
56
|
margin-bottom: $grid-gutter-width;
|
57
|
border-radius: 10px 10px 0 0;
|
58
|
text-align: center;
|
59
|
background: #F2F2F2;
|
60
|
|
61
|
img {
|
62
|
width: 300px;
|
63
|
|
64
|
@include media-breakpoint-down(xs) {
|
65
|
width: 280px;
|
66
|
}
|
67
|
}
|
68
|
}
|
69
|
|
70
|
.login-heading {
|
71
|
text-align: center;
|
72
|
font-size: $h3-font-size;
|
73
|
}
|
74
|
|
75
|
.login-copyright {
|
76
|
displey: flex;
|
77
|
align-items: center;
|
78
|
position: absolute;
|
79
|
bottom: 0;
|
80
|
width: 100%;
|
81
|
margin-top: 50px;
|
82
|
text-align: center;
|
83
|
color: $white;
|
84
|
background: $primary;
|
85
|
|
86
|
p {
|
87
|
margin-bottom: 0;
|
88
|
padding: ($grid-gutter-width / 2) 0;
|
89
|
}
|
90
|
|
91
|
a {
|
92
|
color: $white;
|
93
|
}
|
94
|
}
|