保誠-保戶業務員媒合平台
Tomas
2021-12-08 b6661a090e8bcf8f45be24a01b6a7bb08e3aaff1
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
.pam-consultant-login {
  margin: auto;
  width: 336px;
  font-size: 20px;
  color: $PRIMARY_BLACK;
 
  &__header {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1.2;
    color: $PRIMARY_BLACK;
  }
 
  &__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
 
  &__input {
    width: 100%;
    outline: 0;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
    font-size: 20px;
    height: 50px;
    padding: 10px 90px 10px 15px;
    overflow: auto;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
 
    &Icon {
      position: absolute;
      display: flex;
      align-items: center;
      top: 15px;
      right: 15px;
    }
  }
 
  &__forgot-password {
    color: $PRIMARY_RED;
    text-decoration: none;
    font-size: 16px;
  }
 
  &__verifyBlock {
    display: flex;
    justify-content: space-between;
  }
 
  &__verifyImg {
    width: 126px;
    height: 50px;
    border:1px #cccccc solid;
    img {
      width: 100%;
      height: 100%;
    }
  }
 
  &__confirmBlock {
    display: flex;
    justify-content: center;
  }
 
  &__confirm {
    color: $PRIMARY_WHITE;
    width: 80px;
    height: 50px;
    border-radius: 30px;
    border: 1px solid $LIGHT_GREY;
    background-color: $PRIMARY_RED;
  }
}