* { margin: 0; padding: 0; box-sizing: border-box; } body { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); min-height: 100vh; font-family: 'Inter', sans-serif; display: flex; align-items: center; justify-content: center; padding: 20px; } .login-container { background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(20px); border-radius: 20px; padding: 32px 36px; width: 100%; max-width: 380px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); } .logo-section { text-align: center; margin-bottom: 28px; } .logo-container { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 12px; } .logo-icon { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; } .logo-badge { background: rgba(255, 255, 255, 0.25); color: white; padding: 6px 18px; border-radius: 16px; font-size: 12px; font-weight: 600; display: inline-block; } .welcome-title { color: white; font-size: 28px; font-weight: 700; text-align: center; margin-bottom: 8px; letter-spacing: -0.3px; } .welcome-subtitle { color: rgba(255, 255, 255, 0.8); font-size: 14px; text-align: center; margin-bottom: 32px; font-weight: 400; line-height: 1.4; } .form-group { margin-bottom: 20px; } .form-label { color: rgba(255, 255, 255, 0.9); font-size: 13px; font-weight: 500; margin-bottom: 8px; display: block; } .input-wrapper { position: relative; } .form-input { width: 100%; background: linear-gradient(135deg, rgba(173, 216, 230, 0.3) 0%, rgba(135, 206, 235, 0.2) 100%) !important; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 8px; padding: 14px 16px 14px 42px; color: white !important; font-size: 14px; font-family: 'Inter', sans-serif; transition: all 0.3s ease; } .form-input.no-icon { padding: 14px 16px; } .form-input::placeholder { color: rgba(255, 255, 255, 0.6) !important; } .form-input:focus { outline: none; background: linear-gradient(135deg, rgba(173, 216, 230, 0.4) 0%, rgba(135, 206, 235, 0.3) 100%) !important; border-color: rgba(255, 255, 255, 0.5); box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1); color: white !important; } /* Stronger autofill overrides */ .form-input:-webkit-autofill, .form-input:-webkit-autofill:hover, .form-input:-webkit-autofill:focus, .form-input:-webkit-autofill:active { -webkit-box-shadow: 0 0 0 1000px transparent inset !important; -webkit-text-fill-color: white !important; background: linear-gradient(135deg, rgba(173, 216, 230, 0.3) 0%, rgba(135, 206, 235, 0.2) 100%) !important; background-clip: text !important; -webkit-background-clip: text !important; transition: background-color 5000s ease-in-out 0s !important; } /* Firefox autofill */ .form-input:-moz-autofill { background: linear-gradient(135deg, rgba(173, 216, 230, 0.3) 0%, rgba(135, 206, 235, 0.2) 100%) !important; color: white !important; } /* Additional autofill overrides */ input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus { border: 1px solid rgba(255, 255, 255, 0.3) !important; -webkit-text-fill-color: white !important; -webkit-box-shadow: 0 0 0px 1000px transparent inset !important; background: linear-gradient(135deg, rgba(173, 216, 230, 0.3) 0%, rgba(135, 206, 235, 0.2) 100%) !important; background-clip: padding-box !important; } .input-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: rgba(255, 255, 255, 0.7); font-size: 16px; } .form-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; } .checkbox-wrapper { display: flex; align-items: center; gap: 6px; } .checkbox { width: 14px; height: 14px; accent-color: #667eea; } .checkbox-label { color: rgba(255, 255, 255, 0.8); font-size: 12px; font-weight: 400; } .forgot-link { color: rgba(255, 255, 255, 0.8); text-decoration: none; font-size: 12px; font-weight: 400; transition: color 0.3s ease; } .forgot-link:hover { color: white; } .signin-btn { width: 100%; background: linear-gradient(135deg, #4c63d2 0%, #6b46c1 100%); border: none; border-radius: 8px; padding: 14px; color: white; font-size: 14px; font-weight: 600; font-family: 'Inter', sans-serif; cursor: pointer; transition: all 0.3s ease; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.5px; } .signin-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(76, 99, 210, 0.4); } .signup-text { text-align: center; color: rgba(255, 255, 255, 0.8); font-size: 13px; line-height: 1.4; } .signup-link { color: white; text-decoration: none; font-weight: 600; margin-left: 4px; } .signup-link:hover { text-decoration: underline; } .alert { background: rgba(239, 68, 68, 0.2); border: 1px solid rgba(239, 68, 68, 0.3); color: white; padding: 10px 12px; border-radius: 8px; margin-bottom: 16px; font-size: 12px; } .alert.success { background: rgba(34, 197, 94, 0.2); border: 1px solid rgba(34, 197, 94, 0.3); } .alert ul { list-style: none; margin: 0; }