|
5 | 5 | top: 0; |
6 | 6 | width: 100%; |
7 | 7 | height: 100%; |
8 | | - background-color: rgba(0, 0, 0, 0.4); |
| 8 | + background-color: rgba(0, 0, 0, 0.8); |
9 | 9 | } |
10 | 10 |
|
11 | 11 | .modal-content { |
12 | 12 | display: flex; |
| 13 | + flex-direction: row; |
13 | 14 | margin: 15% auto; |
14 | | - width: 50vw; |
15 | | - padding: 30px; |
| 15 | + width: 60vw; |
| 16 | + padding: 80px 40px; |
| 17 | + background-color: rgba(20, 20, 20, 1); |
16 | 18 | box-shadow: 0 0 22px 1px black; |
| 19 | + gap: 30px; |
| 20 | + align-items: center; |
| 21 | +} |
| 22 | + |
| 23 | +@media only screen and (max-width: 480px) { |
| 24 | + .modal-content { |
| 25 | + width: 90vw !important; |
| 26 | + flex-direction: column !important; |
| 27 | + } |
| 28 | + .modal-content input { |
| 29 | + font-size: 0.9rem !important; |
| 30 | + } |
| 31 | + .modal-content button { |
| 32 | + padding: 10px !important; |
| 33 | + } |
| 34 | + .modal-content img { |
| 35 | + width: 50vw !important; |
| 36 | + } |
| 37 | +} |
| 38 | + |
| 39 | +@media only screen and (min-width: 481px) and (max-width: 1022px) { |
| 40 | + .modal-content { |
| 41 | + width: 70vw !important; |
| 42 | + flex-direction: column !important; |
| 43 | + } |
| 44 | + .modal-content input { |
| 45 | + font-size: 0.95rem !important; |
| 46 | + } |
| 47 | + .modal-content img { |
| 48 | + width: 30vw !important; |
| 49 | + } |
| 50 | +} |
| 51 | + |
| 52 | +.modal-content img { |
| 53 | + width: 20vw; |
17 | 54 | } |
18 | 55 |
|
19 | 56 | .modal-content .header { |
20 | 57 | display: flex; |
21 | 58 | justify-content: flex-end; |
22 | 59 | } |
23 | 60 |
|
24 | | -.modal-content label { |
25 | | - font-size: 1.2em; |
26 | | -} |
27 | | - |
28 | 61 | .modal-content input { |
29 | | - border: 1px solid #F58E8E; |
30 | | - border-radius: 3px; |
| 62 | + border: none; |
| 63 | + background-color: transparent; |
31 | 64 | margin: 10px 0; |
| 65 | + flex: 1; |
| 66 | + color: rgba(255, 255, 255, 0.70); |
| 67 | + font-size: 1rem; |
| 68 | + font-style: normal; |
| 69 | + font-weight: 400; |
| 70 | + line-height: normal; |
| 71 | + width: 100%; |
32 | 72 | } |
33 | 73 |
|
34 | 74 | .modal-content input:focus { |
35 | 75 | outline: none !important; |
36 | | - box-shadow: 0 0 10px #F58E8E; |
37 | 76 | } |
38 | 77 |
|
39 | 78 | .modal-content button { |
40 | | - color: black; |
41 | | - background-color: #F58E8E; |
| 79 | + color: white; |
42 | 80 | border: none; |
43 | | - border-radius: 3px; |
44 | | - font-size: 1.3em; |
| 81 | + text-align: center; |
| 82 | + font-size: 0.8rem; |
| 83 | + font-style: normal; |
| 84 | + font-weight: 700; |
| 85 | + line-height: 24px; |
| 86 | + border-radius: 6px; |
| 87 | + background: linear-gradient(90deg, #F58E8E 0%, #F1B370 100%); |
| 88 | + padding: 10px 24px; |
45 | 89 | } |
46 | 90 |
|
47 | | -/* |
48 | | -.close { |
49 | | - color: black; |
50 | | - font-size: 28px; |
| 91 | +.modal-content .email-error { |
| 92 | + display: flex; |
| 93 | + color: red; |
| 94 | + font-size: 0.9em; |
| 95 | + margin-top: 4px; |
| 96 | +} |
| 97 | + |
| 98 | +.modal-content .input-container { |
| 99 | + display: flex; |
| 100 | + padding: 18px 16px; |
| 101 | + align-items: center; |
| 102 | + align-self: stretch; |
| 103 | + border-radius: 12px; |
| 104 | + border: 1px solid rgba(255, 255, 255, 0.20); |
| 105 | +} |
| 106 | + |
| 107 | +.modal-content h1 { |
| 108 | + color: #FFF; |
| 109 | + font-size: 1.3rem; |
| 110 | + font-style: normal; |
51 | 111 | font-weight: bold; |
| 112 | + line-height: normal; |
52 | 113 | } |
53 | 114 |
|
54 | | -.close:hover, |
55 | | -.close:focus { |
56 | | - color: #F58E8E; |
| 115 | +.modal-content p { |
| 116 | + color: #FFF; |
| 117 | + font-size: 1rem; |
| 118 | + font-style: normal; |
| 119 | + font-weight: 400; |
| 120 | + line-height: 26px; |
| 121 | +} |
| 122 | + |
| 123 | +.modal-content .modal-text { |
| 124 | + flex: 1; |
| 125 | + overflow: auto; |
| 126 | +} |
| 127 | + |
| 128 | +.modal-content a { |
57 | 129 | text-decoration: none; |
58 | | - cursor: pointer; |
| 130 | + color: #F58E8E; |
59 | 131 | } |
60 | | -*/ |
61 | 132 |
|
62 | | -.modal-content .email-error { |
63 | | - color: red; |
64 | | - font-size: 0.9em; |
65 | | - margin-top: 4px; |
| 133 | +.modal-content a:hover { |
| 134 | + text-decoration: none; |
| 135 | + color: #F1B370; |
66 | 136 | } |
0 commit comments