-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathauth.css
More file actions
91 lines (74 loc) · 1.22 KB
/
auth.css
File metadata and controls
91 lines (74 loc) · 1.22 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
@import 'variables.css';
.title {
font-size: 20px;
line-height: 27px;
margin-top: 40px;
}
.orLine {
margin-top: 20px;
font-size: 16px;
line-height: 22px;
}
.message {
margin-top: 40px;
color: var(--color-text);
}
.main {
display: flex;
flex-direction: column;
align-items: center;
width: 388px;
& :global(.fc-input) {
width: 100%;
}
}
.content {
width: 100%;
margin-top: 30px;
}
.buttonBlock {
margin-top: 20px;
vertical-align: baseline;
display: flex;
}
.form {
width: 100%;
margin-top: 20px;
& :global(.fc-form-field-label) {
font-size: 14px;
font-weight: 400;
line-height: 19px;
}
& :global(.fc-form-field) {
margin-top: 10px;
}
}
.backButton {
display: block;
padding: 10px 20px;
color: var(--color-additional-text);
text-decoration: none;
margin-left: 20px;
font-size: 14px;
&:hover {
color: var(--color-text);
text-decoration: underline;
}
}
.passwordLabel {
display: flex;
}
.forgotLink {
margin-left: auto;
font-size: 13px;
line-height: 18px;
&:hover {
color: var(--color-text);
}
}
.alert {
margin: 20px 0;
}
.signup-email input[type=email]:disabled {
background-color: var(--bg-grey-headers) !important;
}