1 | @import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600;700&display=swap');
|
---|
2 |
|
---|
3 | * {
|
---|
4 | box-sizing: border-box;
|
---|
5 | }
|
---|
6 |
|
---|
7 | body {
|
---|
8 | background: #f5f2e9;
|
---|
9 | display: flex;
|
---|
10 | justify-content: center;
|
---|
11 | align-items: center;
|
---|
12 | flex-direction: column;
|
---|
13 | font-family: 'Crimson Text', serif;
|
---|
14 | height: 100vh;
|
---|
15 | margin: -20px 0 50px;
|
---|
16 | }
|
---|
17 |
|
---|
18 | h1 {
|
---|
19 | font-weight: 700;
|
---|
20 | margin: 0;
|
---|
21 | color: #2e5739;
|
---|
22 | }
|
---|
23 |
|
---|
24 | p {
|
---|
25 | font-size: 16px;
|
---|
26 | line-height: 24px;
|
---|
27 | letter-spacing: 0.3px;
|
---|
28 | margin: 20px 0 30px;
|
---|
29 | color: #ffffff; /* Changed from #4a4a4a to white for overlay panels */
|
---|
30 | text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); /* Added subtle text shadow for better readability */
|
---|
31 | font-weight: 500; /* Slightly increased font weight */
|
---|
32 | }
|
---|
33 |
|
---|
34 | /* Additional style for paragraphs not in overlay panels */
|
---|
35 | .form-container p {
|
---|
36 | color: #666666; /* Lighter gray for better visibility in the white form area */
|
---|
37 | }
|
---|
38 |
|
---|
39 | span {
|
---|
40 | font-size: 14px;
|
---|
41 | color: #666;
|
---|
42 | }
|
---|
43 |
|
---|
44 | a {
|
---|
45 | color: #2e5739;
|
---|
46 | font-size: 14px;
|
---|
47 | text-decoration: none;
|
---|
48 | margin: 15px 0;
|
---|
49 | transition: color 0.3s ease;
|
---|
50 | }
|
---|
51 |
|
---|
52 | a:hover {
|
---|
53 | color: #1a321f;
|
---|
54 | }
|
---|
55 |
|
---|
56 | button {
|
---|
57 | border-radius: 4px;
|
---|
58 | border: 2px solid #2e5739;
|
---|
59 | background-color: #2e5739;
|
---|
60 | color: #ffffff;
|
---|
61 | font-family: 'Crimson Text', serif;
|
---|
62 | font-size: 14px;
|
---|
63 | font-weight: 600;
|
---|
64 | padding: 12px 45px;
|
---|
65 | letter-spacing: 1px;
|
---|
66 | text-transform: uppercase;
|
---|
67 | transition: all 0.3s ease;
|
---|
68 | cursor: pointer;
|
---|
69 | }
|
---|
70 |
|
---|
71 | button:hover {
|
---|
72 | background-color: #1a321f;
|
---|
73 | border-color: #1a321f;
|
---|
74 | }
|
---|
75 |
|
---|
76 | button:active {
|
---|
77 | transform: scale(0.95);
|
---|
78 | }
|
---|
79 |
|
---|
80 | button.ghost {
|
---|
81 | background-color: transparent;
|
---|
82 | border-color: #ffffff;
|
---|
83 | }
|
---|
84 |
|
---|
85 | button.ghost:hover {
|
---|
86 | background-color: #ffffff;
|
---|
87 | color: #2e5739;
|
---|
88 | }
|
---|
89 |
|
---|
90 | form {
|
---|
91 | background-color: #ffffff;
|
---|
92 | display: flex;
|
---|
93 | align-items: center;
|
---|
94 | justify-content: center;
|
---|
95 | flex-direction: column;
|
---|
96 | padding: 0 50px;
|
---|
97 | height: 100%;
|
---|
98 | text-align: center;
|
---|
99 | }
|
---|
100 |
|
---|
101 | input {
|
---|
102 | background-color: #f8f5ef;
|
---|
103 | border: 1px solid #d0c8b5;
|
---|
104 | border-radius: 4px;
|
---|
105 | padding: 12px 15px;
|
---|
106 | margin: 8px 0;
|
---|
107 | width: 100%;
|
---|
108 | font-family: 'Crimson Text', serif;
|
---|
109 | }
|
---|
110 |
|
---|
111 | input:focus {
|
---|
112 | outline: none;
|
---|
113 | border-color: #2e5739;
|
---|
114 | }
|
---|
115 |
|
---|
116 | .container {
|
---|
117 | background-color: #fff;
|
---|
118 | border-radius: 8px;
|
---|
119 | box-shadow: 0 14px 28px rgba(0,0,0,0.15),
|
---|
120 | 0 10px 10px rgba(0,0,0,0.12);
|
---|
121 | position: relative;
|
---|
122 | overflow: hidden;
|
---|
123 | width: 768px;
|
---|
124 | max-width: 100%;
|
---|
125 | min-height: 480px;
|
---|
126 | }
|
---|
127 |
|
---|
128 | .form-container {
|
---|
129 | position: absolute;
|
---|
130 | top: 0;
|
---|
131 | height: 100%;
|
---|
132 | transition: all 0.6s ease-in-out;
|
---|
133 | }
|
---|
134 |
|
---|
135 | .sign-in-container {
|
---|
136 | left: 0;
|
---|
137 | width: 50%;
|
---|
138 | z-index: 2;
|
---|
139 | }
|
---|
140 |
|
---|
141 | .sign-up-container {
|
---|
142 | left: 0;
|
---|
143 | width: 50%;
|
---|
144 | opacity: 0;
|
---|
145 | z-index: 1;
|
---|
146 | }
|
---|
147 |
|
---|
148 | .overlay-container {
|
---|
149 | position: absolute;
|
---|
150 | top: 0;
|
---|
151 | left: 50%;
|
---|
152 | width: 50%;
|
---|
153 | height: 100%;
|
---|
154 | overflow: hidden;
|
---|
155 | transition: transform 0.6s ease-in-out;
|
---|
156 | z-index: 100;
|
---|
157 | }
|
---|
158 |
|
---|
159 | .overlay {
|
---|
160 | background: #2e5739;
|
---|
161 | background: linear-gradient(to right, #2e5739, #1a321f);
|
---|
162 | background-repeat: no-repeat;
|
---|
163 | background-size: cover;
|
---|
164 | background-position: 0 0;
|
---|
165 | color: #ffffff;
|
---|
166 | position: relative;
|
---|
167 | left: -100%;
|
---|
168 | height: 100%;
|
---|
169 | width: 200%;
|
---|
170 | transform: translateX(0);
|
---|
171 | transition: transform 0.6s ease-in-out;
|
---|
172 | }
|
---|
173 |
|
---|
174 | .overlay-panel {
|
---|
175 | position: absolute;
|
---|
176 | display: flex;
|
---|
177 | align-items: center;
|
---|
178 | justify-content: center;
|
---|
179 | flex-direction: column;
|
---|
180 | padding: 0 40px;
|
---|
181 | text-align: center;
|
---|
182 | top: 0;
|
---|
183 | height: 100%;
|
---|
184 | width: 50%;
|
---|
185 | transform: translateX(0);
|
---|
186 | transition: transform 0.6s ease-in-out;
|
---|
187 | }
|
---|
188 |
|
---|
189 | .overlay-left {
|
---|
190 | transform: translateX(-20%);
|
---|
191 | }
|
---|
192 |
|
---|
193 | .overlay-right {
|
---|
194 | right: 0;
|
---|
195 | transform: translateX(0);
|
---|
196 | }
|
---|
197 |
|
---|
198 | .container.right-panel-active .sign-in-container {
|
---|
199 | transform: translateX(100%);
|
---|
200 | }
|
---|
201 |
|
---|
202 | .container.right-panel-active .sign-up-container {
|
---|
203 | transform: translateX(100%);
|
---|
204 | opacity: 1;
|
---|
205 | z-index: 5;
|
---|
206 | }
|
---|
207 |
|
---|
208 | .container.right-panel-active .overlay-container {
|
---|
209 | transform: translateX(-100%);
|
---|
210 | }
|
---|
211 |
|
---|
212 | .container.right-panel-active .overlay {
|
---|
213 | transform: translateX(50%);
|
---|
214 | }
|
---|
215 |
|
---|
216 | .container.right-panel-active .overlay-left {
|
---|
217 | transform: translateX(0);
|
---|
218 | }
|
---|
219 |
|
---|
220 | .container.right-panel-active .overlay-right {
|
---|
221 | transform: translateX(20%);
|
---|
222 | }
|
---|
223 |
|
---|
224 | .social-container {
|
---|
225 | margin: 20px 0;
|
---|
226 | }
|
---|
227 |
|
---|
228 | .social-container a {
|
---|
229 | border: 1px solid #d0c8b5;
|
---|
230 | border-radius: 50%;
|
---|
231 | display: inline-flex;
|
---|
232 | justify-content: center;
|
---|
233 | align-items: center;
|
---|
234 | margin: 0 5px;
|
---|
235 | height: 40px;
|
---|
236 | width: 40px;
|
---|
237 | transition: all 0.3s ease;
|
---|
238 | }
|
---|
239 |
|
---|
240 | .social-container a:hover {
|
---|
241 | border-color: #2e5739;
|
---|
242 | background-color: #f8f5ef;
|
---|
243 | }
|
---|
244 |
|
---|
245 | .social-container svg {
|
---|
246 | width: 20px;
|
---|
247 | height: 20px;
|
---|
248 | fill: #666;
|
---|
249 | }
|
---|
250 |
|
---|
251 | .social-container a:hover svg {
|
---|
252 | fill: #2e5739;
|
---|
253 | }
|
---|
254 |
|
---|
255 |
|
---|
256 | /* New specific styling for overlay h1s */
|
---|
257 | .overlay-panel h1 {
|
---|
258 | color: #ffffff; /* Pure white for maximum visibility */
|
---|
259 | text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
|
---|
260 | font-size: 32px; /* Slightly larger */
|
---|
261 | letter-spacing: 0.5px; /* Improved readability */
|
---|
262 | margin-bottom: 15px; /* Better spacing */
|
---|
263 | }
|
---|
264 |
|
---|
265 | .error-message {
|
---|
266 | color: #dc3545;
|
---|
267 | font-size: 14px;
|
---|
268 | margin: 5px 0;
|
---|
269 | display: none;
|
---|
270 | }
|
---|
271 |
|
---|
272 | .error-message.show {
|
---|
273 | display: block;
|
---|
274 | }
|
---|
275 |
|
---|
276 | input.error {
|
---|
277 | border-color: #dc3545;
|
---|
278 | background-color: #fff8f8;
|
---|
279 | }
|
---|
280 |
|
---|
281 | .success-message {
|
---|
282 | color: #28a745;
|
---|
283 | font-size: 14px;
|
---|
284 | margin: 5px 0;
|
---|
285 | display: none;
|
---|
286 | }
|
---|
287 |
|
---|
288 | .success-message.show {
|
---|
289 | display: block;
|
---|
290 | } |
---|