blob: cd30e03eca852bac2163f8ece34adf77560d2c80 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
@font-face {
font-family: "Inter Light";
src: url("/_portgate/static/fonts/Inter-Light.ttf");
}
@font-face {
font-family: "Inter Medium";
src: url("/_portgate/static/fonts/Inter-Medium.ttf");
}
html,
body {
height: 100%;
width: 100%;
}
body {
margin: 0;
background-color: #6d6d7a;
color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
font-family: "Inter Light";
font-size: 16px;
}
.container {
width: 500px;
}
.logo {
width: 40px;
}
.title {
font-family: "Inter Medium";
font-size: 22px;
}
.description {
font-size: 18px;
margin-bottom: 24px;
}
.authentication-form {
display: flex;
}
.authentication-input {
flex-grow: 1;
border: none;
padding: 15px;
}
.authentication-button {
color: #ffffff;
width: 50px;
background-color: transparent;
border: none;
}
|