@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600;700&display=swap'); * { box-sizing: border-box; } body { background: #f5f2e9; display: flex; justify-content: center; align-items: center; flex-direction: column; font-family: 'Crimson Text', serif; height: 100vh; margin: -20px 0 50px; } h1 { font-weight: 700; margin: 0; color: #2e5739; } p { font-size: 16px; line-height: 24px; letter-spacing: 0.3px; margin: 20px 0 30px; color: #ffffff; /* Changed from #4a4a4a to white for overlay panels */ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); /* Added subtle text shadow for better readability */ font-weight: 500; /* Slightly increased font weight */ } /* Additional style for paragraphs not in overlay panels */ .form-container p { color: #666666; /* Lighter gray for better visibility in the white form area */ } span { font-size: 14px; color: #666; } a { color: #2e5739; font-size: 14px; text-decoration: none; margin: 15px 0; transition: color 0.3s ease; } a:hover { color: #1a321f; } button { border-radius: 4px; border: 2px solid #2e5739; background-color: #2e5739; color: #ffffff; font-family: 'Crimson Text', serif; font-size: 14px; font-weight: 600; padding: 12px 45px; letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s ease; cursor: pointer; } button:hover { background-color: #1a321f; border-color: #1a321f; } button:active { transform: scale(0.95); } button.ghost { background-color: transparent; border-color: #ffffff; } button.ghost:hover { background-color: #ffffff; color: #2e5739; } form { background-color: #ffffff; display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 0 50px; height: 100%; text-align: center; } input { background-color: #f8f5ef; border: 1px solid #d0c8b5; border-radius: 4px; padding: 12px 15px; margin: 8px 0; width: 100%; font-family: 'Crimson Text', serif; } input:focus { outline: none; border-color: #2e5739; } .container { background-color: #fff; border-radius: 8px; box-shadow: 0 14px 28px rgba(0,0,0,0.15), 0 10px 10px rgba(0,0,0,0.12); position: relative; overflow: hidden; width: 768px; max-width: 100%; min-height: 480px; } .form-container { position: absolute; top: 0; height: 100%; transition: all 0.6s ease-in-out; } .sign-in-container { left: 0; width: 50%; z-index: 2; } .sign-up-container { left: 0; width: 50%; opacity: 0; z-index: 1; } .overlay-container { position: absolute; top: 0; left: 50%; width: 50%; height: 100%; overflow: hidden; transition: transform 0.6s ease-in-out; z-index: 100; } .overlay { background: #2e5739; background: linear-gradient(to right, #2e5739, #1a321f); background-repeat: no-repeat; background-size: cover; background-position: 0 0; color: #ffffff; position: relative; left: -100%; height: 100%; width: 200%; transform: translateX(0); transition: transform 0.6s ease-in-out; } .overlay-panel { position: absolute; display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 0 40px; text-align: center; top: 0; height: 100%; width: 50%; transform: translateX(0); transition: transform 0.6s ease-in-out; } .overlay-left { transform: translateX(-20%); } .overlay-right { right: 0; transform: translateX(0); } .container.right-panel-active .sign-in-container { transform: translateX(100%); } .container.right-panel-active .sign-up-container { transform: translateX(100%); opacity: 1; z-index: 5; } .container.right-panel-active .overlay-container { transform: translateX(-100%); } .container.right-panel-active .overlay { transform: translateX(50%); } .container.right-panel-active .overlay-left { transform: translateX(0); } .container.right-panel-active .overlay-right { transform: translateX(20%); } .social-container { margin: 20px 0; } .social-container a { border: 1px solid #d0c8b5; border-radius: 50%; display: inline-flex; justify-content: center; align-items: center; margin: 0 5px; height: 40px; width: 40px; transition: all 0.3s ease; } .social-container a:hover { border-color: #2e5739; background-color: #f8f5ef; } .social-container svg { width: 20px; height: 20px; fill: #666; } .social-container a:hover svg { fill: #2e5739; } /* New specific styling for overlay h1s */ .overlay-panel h1 { color: #ffffff; /* Pure white for maximum visibility */ text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */ font-size: 32px; /* Slightly larger */ letter-spacing: 0.5px; /* Improved readability */ margin-bottom: 15px; /* Better spacing */ } .error-message { color: #dc3545; font-size: 14px; margin: 5px 0; display: none; } .error-message.show { display: block; } input.error { border-color: #dc3545; background-color: #fff8f8; } .success-message { color: #28a745; font-size: 14px; margin: 5px 0; display: none; } .success-message.show { display: block; }