|
2 | 2 | display: flex; |
3 | 3 | flex-direction: column; |
4 | 4 | width: 100%; |
5 | | - gap: 1rem; |
| 5 | + gap: 12px; |
6 | 6 | align-items: stretch; |
7 | 7 | } |
8 | 8 |
|
9 | 9 | .divider { |
10 | 10 | display: flex; |
11 | 11 | align-items: center; |
12 | | - gap: 0.75rem; |
13 | | - font-family: 'Jost', system-ui, sans-serif; |
14 | | - font-size: 0.75rem; |
| 12 | + gap: 12px; |
| 13 | + font-size: 12px; |
15 | 14 | font-weight: 500; |
16 | | - letter-spacing: 0.2em; |
| 15 | + letter-spacing: 0.08em; |
17 | 16 | text-transform: uppercase; |
18 | | - color: #8a8480; |
19 | | - margin: 0; |
| 17 | + color: #515151; |
| 18 | + margin: 4px 0 0 0; |
20 | 19 |
|
21 | 20 | &::before, |
22 | 21 | &::after { |
23 | 22 | content: ''; |
24 | 23 | flex: 1; |
25 | 24 | height: 1px; |
26 | | - background: #c8c0b5; |
| 25 | + background: #d9d9d9; |
27 | 26 | } |
28 | 27 | } |
29 | 28 |
|
30 | 29 | .form { |
31 | 30 | display: flex; |
32 | 31 | flex-direction: column; |
33 | | - gap: 0.6rem; |
| 32 | + gap: 10px; |
34 | 33 | } |
35 | 34 |
|
36 | 35 | .fieldGroup { |
37 | 36 | display: flex; |
38 | 37 | flex-direction: column; |
39 | | - gap: 0.4rem; |
| 38 | + gap: 6px; |
40 | 39 | } |
41 | 40 |
|
42 | 41 | .label { |
43 | | - font-family: 'Jost', system-ui, sans-serif; |
44 | | - font-size: 0.75rem; |
| 42 | + font-size: 12px; |
45 | 43 | font-weight: 500; |
46 | | - letter-spacing: 0.2em; |
| 44 | + letter-spacing: 0.04em; |
47 | 45 | text-transform: uppercase; |
48 | | - color: #1c1c1a; |
| 46 | + color: #515151; |
49 | 47 | } |
50 | 48 |
|
51 | 49 | .input { |
52 | | - font-family: 'Source Serif 4', Georgia, serif; |
53 | | - font-size: 1rem; |
54 | | - color: #1c1c1a; |
55 | | - background: #faf6ef; |
56 | | - border: 1px solid #ddd7ce; |
57 | | - padding: 0.75rem 1rem; |
| 50 | + font-size: 14px; |
| 51 | + color: #000; |
| 52 | + background: #fff; |
| 53 | + border: 1px solid #d9d9d9; |
| 54 | + border-radius: 2px; |
| 55 | + padding: 8px 12px; |
| 56 | + height: 36px; |
58 | 57 | outline: none; |
59 | 58 | transition: border-color 0.15s ease; |
60 | 59 |
|
| 60 | + &::placeholder { |
| 61 | + color: #9e9e9e; |
| 62 | + } |
| 63 | + |
61 | 64 | &:focus { |
62 | | - border-color: #b83232; |
| 65 | + border-color: #28587b; |
63 | 66 | } |
64 | 67 | } |
65 | 68 |
|
66 | 69 | .submit { |
67 | | - font-family: 'Jost', system-ui, sans-serif; |
68 | | - font-size: 0.75rem; |
69 | | - font-weight: 500; |
70 | | - letter-spacing: 0.2em; |
71 | | - text-transform: uppercase; |
72 | | - color: #1c1c1a; |
73 | | - background: transparent; |
74 | | - border: 1px solid #c8c0b5; |
75 | | - padding: 0.75rem 1.5rem; |
| 70 | + font-size: 14px; |
| 71 | + color: #000; |
| 72 | + background: #fff; |
| 73 | + border: 1px solid #d9d9d9; |
| 74 | + border-radius: 2px; |
| 75 | + height: 36px; |
| 76 | + padding: 0 16px; |
76 | 77 | cursor: pointer; |
77 | 78 | transition: |
78 | 79 | border-color 0.2s ease, |
79 | | - color 0.2s ease; |
| 80 | + color 0.2s ease, |
| 81 | + background-color 0.2s ease; |
80 | 82 |
|
81 | 83 | &:hover:not(:disabled) { |
82 | | - border-color: #b83232; |
83 | | - color: #b83232; |
| 84 | + border-color: #28587b; |
| 85 | + color: #28587b; |
84 | 86 | } |
85 | 87 |
|
86 | 88 | &:disabled { |
|
90 | 92 | } |
91 | 93 |
|
92 | 94 | .error { |
93 | | - font-family: 'Source Serif 4', Georgia, serif; |
94 | | - font-size: 0.875rem; |
| 95 | + font-size: 13px; |
95 | 96 | color: #b83232; |
96 | 97 | margin: 0; |
97 | 98 | } |
98 | 99 |
|
99 | 100 | .confirmation { |
100 | 101 | display: flex; |
101 | 102 | flex-direction: column; |
102 | | - gap: 0.5rem; |
103 | | - padding: 1rem; |
104 | | - border: 1px solid #ddd7ce; |
105 | | - background: #f5f1ea; |
| 103 | + gap: 4px; |
| 104 | + padding: 12px 16px; |
| 105 | + border: 1px solid #d9d9d9; |
| 106 | + border-radius: 2px; |
| 107 | + background: #fff; |
106 | 108 | text-align: center; |
107 | 109 | } |
108 | 110 |
|
109 | 111 | .confirmationHeading { |
110 | | - font-family: 'Aboreto', Georgia, serif; |
111 | | - font-size: 1.125rem; |
112 | | - font-weight: 400; |
113 | | - letter-spacing: 0.08em; |
114 | | - color: #1c1c1a; |
| 112 | + font-size: 16px; |
| 113 | + font-weight: 500; |
| 114 | + color: #28587b; |
115 | 115 | margin: 0; |
116 | 116 | } |
117 | 117 |
|
118 | 118 | .confirmationBody { |
119 | | - font-family: 'Source Serif 4', Georgia, serif; |
120 | | - font-size: 0.875rem; |
121 | | - line-height: 1.6; |
122 | | - color: #5c5650; |
| 119 | + font-size: 13px; |
| 120 | + line-height: 1.5; |
| 121 | + color: #515151; |
123 | 122 | margin: 0; |
124 | 123 | } |
125 | 124 |
|
126 | 125 | .banner { |
127 | | - font-family: 'Source Serif 4', Georgia, serif; |
128 | | - font-size: 0.875rem; |
129 | | - line-height: 1.6; |
130 | | - color: #5c5650; |
131 | | - padding: 0.75rem 1rem; |
132 | | - border: 1px solid #ddd7ce; |
133 | | - background: #f5f1ea; |
| 126 | + font-size: 13px; |
| 127 | + line-height: 1.5; |
| 128 | + color: #515151; |
| 129 | + padding: 12px 16px; |
| 130 | + border: 1px solid #d9d9d9; |
| 131 | + border-radius: 2px; |
| 132 | + background: #fff; |
134 | 133 | margin: 0; |
135 | 134 | text-align: center; |
136 | 135 | } |
| 136 | + |
| 137 | +:global(body.darkTheme) { |
| 138 | + .divider { |
| 139 | + color: rgba(218, 218, 218, 0.7); |
| 140 | + |
| 141 | + &::before, |
| 142 | + &::after { |
| 143 | + background: #303338; |
| 144 | + } |
| 145 | + } |
| 146 | + |
| 147 | + .label { |
| 148 | + color: rgba(218, 218, 218, 0.7); |
| 149 | + } |
| 150 | + |
| 151 | + .input { |
| 152 | + background: #151a26; |
| 153 | + border-color: #303338; |
| 154 | + color: #dadada; |
| 155 | + |
| 156 | + &::placeholder { |
| 157 | + color: rgba(218, 218, 218, 0.4); |
| 158 | + } |
| 159 | + |
| 160 | + &:focus { |
| 161 | + border-color: #7fb3d5; |
| 162 | + } |
| 163 | + } |
| 164 | + |
| 165 | + .submit { |
| 166 | + background: #151a26; |
| 167 | + border-color: #303338; |
| 168 | + color: #dadada; |
| 169 | + |
| 170 | + &:hover:not(:disabled) { |
| 171 | + background: #232a3a; |
| 172 | + border-color: #7fb3d5; |
| 173 | + color: #7fb3d5; |
| 174 | + } |
| 175 | + } |
| 176 | + |
| 177 | + .error { |
| 178 | + color: #ff8a8a; |
| 179 | + } |
| 180 | + |
| 181 | + .confirmation, |
| 182 | + .banner { |
| 183 | + background: #151a26; |
| 184 | + border-color: #303338; |
| 185 | + color: rgba(218, 218, 218, 0.85); |
| 186 | + } |
| 187 | + |
| 188 | + .confirmationHeading { |
| 189 | + color: #7fb3d5; |
| 190 | + } |
| 191 | + |
| 192 | + .confirmationBody { |
| 193 | + color: rgba(218, 218, 218, 0.7); |
| 194 | + } |
| 195 | +} |
0 commit comments