@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); * { margin: 0; padding: 0; box-sizing: border-box; } html, body { height: 100%; margin: 0; padding: 0; } body { font-family: 'Inter', sans-serif; background: #0a0a0f; color: #ffffff; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; background-image: radial-gradient(circle at 20% 80%, #1a1a2e 0%, transparent 50%), radial-gradient(circle at 80% 20%, #16213e 0%, transparent 50%), radial-gradient(circle at 40% 40%, #0f3460 0%, transparent 50%); } .login-container { background: rgba(26, 26, 46, 0.95); backdrop-filter: blur(10px); border-radius: 20px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); padding: 40px; max-width: 400px; width: 100%; position: relative; overflow: hidden; flex-grow: 1; display: flex; flex-direction: column; justify-content: center; border: 1px solid rgba(255, 255, 255, 0.1); } .login-container::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c); background-size: 300% 100%; animation: gradientShift 3s ease infinite; } @keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } h1 { text-align: center; color: #ffffff; margin-bottom: 30px; font-size: 2em; font-weight: 300; letter-spacing: -1px; } .form-group { margin-bottom: 25px; position: relative; } label { display: block; margin-bottom: 8px; color: #555; font-weight: 500; font-size: 0.95em; } input { width: 100%; padding: 15px 20px; border: 2px solid #e0e0e0; border-radius: 12px; font-size: 1em; transition: all 0.3s ease; background: #fafafa; font-family: inherit; } input:focus { outline: none; border-color: #667eea; background: white; box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1); transform: translateY(-2px); } input:hover { border-color: #ccc; } .login-btn { width: 100%; padding: 18px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; border: none; border-radius: 12px; font-size: 1.1em; font-weight: 600; cursor: pointer; transition: all 0.3s ease; margin-top: 10px; position: relative; overflow: hidden; } .login-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3); } .login-btn:active { transform: translateY(0); } .login-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; } .error { background: #ffebee; color: #c62828; padding: 15px; border-radius: 8px; margin-top: 15px; border-left: 4px solid #f44336; font-size: 0.9em; opacity: 0; transform: translateY(-10px); transition: all 0.3s ease; } .error.show { opacity: 1; transform: translateY(0); } .success { background: #e8f5e8; color: #2e7d32; padding: 15px; border-radius: 8px; margin-top: 15px; border-left: 4px solid #4caf50; font-size: 0.9em; opacity: 0; transform: translateY(-10px); transition: all 0.3s ease; } .success.show { opacity: 1; transform: translateY(0); } .loading { display: inline-block; width: 20px; height: 20px; border: 3px solid rgba(255, 255, 255, .3); border-radius: 50%; border-top-color: #fff; animation: spin 1s ease-in-out infinite; margin-right: 10px; } @keyframes spin { to { transform: rotate(360deg); } } .info-text { text-align: center; color: #666; font-size: 0.85em; margin-top: 20px; line-height: 1.5; } @media (max-width: 480px) { .login-container { padding: 30px 20px; margin: 10px; } h1 { font-size: 1.6em; } } /* Footer Styles */ .footer { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); border-top: 1px solid #2a2a3e; margin-top: auto; padding: 2rem 0; position: relative; bottom: 0; width: 100%; } .footer-content { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; } .footer-links { display: flex; gap: 2rem; align-items: center; } .footer-link { color: #8892b0; text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; background: none; border: none; cursor: pointer; font-family: inherit; } .footer-link:hover { color: #00d4ff; } .cookie-settings-btn { background: none !important; border: none !important; padding: 0 !important; font-size: 0.9rem !important; } .footer-text { color: #6b7280; font-size: 0.85rem; } .footer-text p { margin: 0; } @media (max-width: 768px) { .footer-content { flex-direction: column; text-align: center; gap: 1.5rem; } .footer-links { flex-wrap: wrap; justify-content: center; gap: 1.5rem; } }