blob: 3d4f17dbb9e77a8284f1de9bf72f65e2ad924516 (
plain) (
blame)
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
|
.first-time-flow {
height: 100vh;
width: 100vw;
background-color: #FFF;
}
.create-password {
display: flex;
flex-flow: column nowrap;
margin: 67px 0 0 146px;
max-width: 350px;
}
.create-password__title {
height: 102px;
width: 280px;
color: #1B344D;
font-size: 40px;
font-weight: 500;
line-height: 51px;
margin-bottom: 24px;
}
.create-password__confirm-input {
margin-top: 15px;
}
.first-time-flow__input {
width: 350px;
font-size: 18px;
line-height: 24px;
padding: 15px 28px;
border: 1px solid #CDCDCD;
background-color: #FFFFFF;
}
.first-time-flow__input::placeholder {
color: #9B9B9B;
font-weight: 200;
}
.first-time-flow__button {
height: 54px;
width: 198px;
box-shadow: 0 2px 4px 0 rgba(0,0,0,0.14);
color: #FFFFFF;
font-size: 20px;
font-weight: 500;
line-height: 26px;
text-align: center;
text-transform: uppercase;
margin: 35px 0 14px;
transition: 200ms ease-in-out;
}
button.first-time-flow__button:hover {
transform: scale(1);
background-color: rgba(247, 134, 28, 0.9);
}
.first-time-flow__link {
color: #1B344D;
font-size: 18px;
line-height: 23px;
}
|